cell.accessoryType

cell.accessoryType

以上方法返回一个枚举类型 UITableViewCellAccessoryType,可选值有四个:UITableViewCellAccessoryNone, UITableViewCellAccessoryDisclosureIndicator, UITableViewCellAccessoryDetailDisclosureButton,和 UITableViewCellAccessoryCheckmark。你可以尝试不同的值,并注意table cell样式的变化。如果返回"UITableViewCellAccessoryDetailDisclosureButton",点击按钮将不会有任 何变化,那是因为table cell不会被选择,当我们点击一个按钮时。当点击附属视图的按钮时,在SDK中提供了一个方法可以获得回调。该方法为 tableView:accessoryButtonTappedForRowWithIndexPath。在这个方法中我们调用 tableView:didSelectRowAtIndexPath方法

原文地址:https://www.cnblogs.com/zander/p/2589669.html