我正在使用allowMultipleSelection = YES
在编辑模式下放置表格视图。因此,它会将左边的那些大圆圈表示行已选中或未选中。
按下单元格确实选择了行。但按下圆圈什么都不做。
我设置cell.editingAccessoryView.userInteractionEnabled = YES;
但没有结果。
是否有我失踪的属性,或者我们不应该按editAccessoryView?
感谢。
答案 0 :(得分:0)
如果左边的“小圆圈”是指右边的配件视图按钮,那么你需要实现方法
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
否则,如果您指的是+和 - 图标,请查看UITableView : detecting click on '-' button in edit mode