gpt4 book ai didi

iphone - 单元格 View 公开按钮及相关方法

转载 作者:行者123 更新时间:2023-12-03 18:50:25 25 4
gpt4 key购买 nike

我一直在努力使用单元披露按钮...首先它说它在我使用时已贬值:

-(UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
return UITableViewCellAccessoryDetailDisclosureButton;
}

因此,我将其注释掉,并使用以下方法将披露内容添加到configureCell 中的单元格中:

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.editingAccessoryType = UITableViewCellAccessoryNone;

但是现在我的披露按钮没有任何作用。我需要添加什么才能使披露按钮正常工作。我在谷歌上搜索的所有内容都是其他已贬值的方法。任何帮助或指示将不胜感激。

最佳答案

如果您确实想要详细信息披露按钮,请确保将单元格附件类型设置为 UITableViewCellAccessoryDe​​tailDisclosureButton。 (您的示例代码显示 UITableViewCellAccessoryDisclosureIndicator。)您可以在 TableView 委托(delegate)的 tableView:accessoryButtonTappedForRowWithIndexPath: 方法中处理详细信息披露按钮点击。您可以在 TableView 委托(delegate)的 tableView:didSelectRowAtIndexPath: 方法中处理行选择(无论辅助 View 是什么)。

关于iphone - 单元格 View 公开按钮及相关方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3847343/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com