0

我将表格视图置于编辑模式,使用allowMultipleSelection = YES. 所以,它把那些大圆圈放在左边,表示一行被选中或未被选中。

按下单元格会选择行。但是按圆圈什么也没做。

我已经设置cell.editingAccessoryView.userInteractionEnabled = YES;没有结果。

是否有我缺少的属性或者我们只是不应该按下editingAccessoryView?

谢谢。

4

1 回答 1

0

如果左边的“小圆圈”是指右边的附件视图按钮,那么你需要实现该方法

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath

否则,如果您指的是 + 和 - 图标,请查看UITableView :在编辑模式下检测单击“-”按钮

于 2012-08-06T15:49:26.263 回答