在编辑打开时在我的 UITableView 控制器上呈现模态视图后,我发现控制器关闭时self.editing
和的值self.tableView.editing
不同(self.editing
仍然打开但self.tableView.editing
已关闭并且 tableView 处于奇怪状态)。
为了纠正这个问题,我 [self setEditing:NO animated:YES]
在展示模态视图时做了。
我发现这两行不做同样的事情:
[self.tableView setEditing:NO animated:YES];
[self setEditing:NO animated:YES];
我的问题是:
(1)为什么这些命令和
(2)self.editing
和的状态如何self.tableView.editing
不同?