objective-c – UITableViewCellAccessoryDe​​tailDisclosureButton和UITableViewCellAccessoryDisclosureIndicator之间有什么区别吗

前端之家收集整理的这篇文章主要介绍了objective-c – UITableViewCellAccessoryDe​​tailDisclosureButton和UITableViewCellAccessoryDisclosureIndicator之间有什么区别吗前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了一个方法 – (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
对于UITableViewCellAccessoryDe​​tailDisclosureButton.

现在我想使用UITableViewCellAccessoryDisclosureIndicator代替UITableViewCellAccessoryDe​​tailDisclosureButton.

UITableViewCellAccessoryDe​​tailDisclosureButton和UITableViewCellAccessoryDe​​tailDisclosureButton之间有什么区别吗?

解决方法

Apple HIG建议您使用UITableViewCellAccessoryDisclosureIndicator浏览分层数据,并使用UITableViewCellAccessoryDe​​tailDisclosureButton执行某些操作,可能会调出可能会更改数据的编辑视图.但是,大多数程序员似乎忽略了这一点.

你可以实现委托方法tableView:didSelectRowAtIndexPath:像这样:

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
    [self tableView:tableView didSelectRowAtIndexPath:indexPath];
}

或相反亦然.

猜你在找的Xcode相关文章