我处于tableView
编辑模式。我在 tableView 的左侧有一个复选标记。
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
return UITableViewCellAccessoryCheckmark;
}
didSelectRowAtIndexPath
每次我点击复选标记时都会调用我的。
当我取消选中复选标记(即再次点击单元格)时,didSelectRowAtIndexPath
不会再次调用。
任何人都知道解决这个问题?
也许每次按下复选标记时都会调用另一种方法?