标签: ios cocoa-touch uitableview ios5
我正在使用setAllowsMultipleSelectionDuringEditing来允许在编辑模式下选择多行。我想知道何时选择了一行,所以我使用tableView:didSelectRowAtIndexPath:可以正常工作。
setAllowsMultipleSelectionDuringEditing
tableView:didSelectRowAtIndexPath:
但是,我想知道何时取消选择其中一行,但在执行此操作时不会调用tableView:didSelectRowAtIndexPath:。有没有办法知道何时取消/取消选择某一行?
答案 0 :(得分:0)
如果您选中UITableViewDelegate Protocol Reference,则会找到名为tableView:didDeselectRowAtIndexPath:的方法。
tableView:didDeselectRowAtIndexPath: