禁用UITableViewCellAccessory

时间:2010-09-03 14:37:51

标签: iphone ios4 uitableview

我想禁用表格中某些行的UITableViewCellAccessoryDetailDisclosure按钮。我似乎无法找到任何方法来做到这一点。我试过这样做:

 cell.UITableViewCellAccessoryDetailDisclosureButton.enabled = NO;

但没有运气。有谁知道怎么做?

1 个答案:

答案 0 :(得分:3)

这不是您寻求的enabled财产。您要做的是指定在构建UITableViewCell对象时不应存在附件详细信息。

所以,在你的-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath中,只需设置:

cell.accessoryType = UITableViewCellAccessoryNone;

这将摆脱该细胞的附件。