在UITableView上使用 – (void)beginUpdates和 – (void)endUpdates时,你是否必须对调用内的数据源进行更改?
即
如果我有一个名为dataSource的NSMutableArray驱动我的tableView我可以这样做…
// edit the actual data first [dataSource addObject:@"Blah"]; // now update the table [self.tableView beginUpdates]; [self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:dataSource.count - 1 inSection:0] withRowAnimation:UITableViewRowAnimationAutomatic]; [self.tableView endUpdates];
还是有必要做……
[self.tableView beginUpdates]; [dataSource addObject:@"Blah"]; [self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:dataSource.count - 1 inSection:0] withRowAnimation:UITableViewRowAnimationAutomatic]; [self.tableView endUpdates];
只是问,因为我有几个地方我正在更新,我可能会将公共代码带到一个函数.
但只有我可以在更新调用之外更新.
解决方法
在tableView beginUpdates / endUpdates之间更新数据源通常是个好主意.调用endUpdates后,操作系统将触发dataSource调用以获取节和行计数.如果此时数据源尚未更新,则可能会导致tableView不一致崩溃.
在某些情况下,可能会在tableView beginUpdates / endUpdates调用之前更新数据源,但是您必须确保在同一个线程和同一个运行循环中更新数据源.由于tableView更新必须在主线程上完成,这意味着您必须在主线程上进行数据源更新.
如果您更新数据源,并且不立即执行tableView更新(并且您执行诸如旋转屏幕之类的操作),那么您可能会遇到tableView不一致性崩溃.