当我们更改了dataSource(删除了section或者row),并调用了[tableview reloadData]
,但- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
还没来及的调用,却调用了- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
导致数组越界崩溃。
正确的路子是删除dataSource后对tableview的row及section进行删除,而非reloadData。
[model.list removeObjectSafeAtIndex:indexPath.row];
[self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];
[self.dataArray removeObjectSafeAtIndex:index];
[self.tableView beginUpdates];
[self.tableView deleteSections:[NSIndexSet indexSetWithIndex:index] withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];