我想禁用表格中某些行的UITableViewCellAccessoryDetailDisclosure
按钮。我似乎无法找到任何方法来做到这一点。我试过这样做:
cell.UITableViewCellAccessoryDetailDisclosureButton.enabled = NO;
但没有运气。有谁知道怎么做?
答案 0 :(得分:3)
这不是您寻求的enabled
财产。您要做的是指定在构建UITableViewCell
对象时不应存在附件详细信息。
所以,在你的-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
中,只需设置:
cell.accessoryType = UITableViewCellAccessoryNone;
这将摆脱该细胞的附件。