如何在单元格末尾的UITable中放置一个编辑按钮?

时间:2011-02-15 08:01:27

标签: iphone cell uitableview

我想放一个编辑按钮(图标),因为大多数应用程序都在值存在的单元格中?

我想要如下输出,

皇家酒店> 泰姬陵酒店

  

显示按钮或图标,   我该怎么办?

如果您不理解我的问题,您可能会再次询问.....

1 个答案:

答案 0 :(得分:3)

如果您要求在单元格中看到>,则这些是附件视图。 您可以通过设置单元格的accessoryType属性来获取标准附件视图

您使用

enter image description here

cell.accessoryType = UITableViewCellAccessoryCheckmark;

代表enter image description here

cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

enter image description here

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

如果您使用DetailDisclosure按钮,您可以使用tableview委托方法- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath

来获取它