我有一个 tableView 显示一个NSMutableArray
对象,我目前正在尝试实现该tableView:commitEditingStyle:forRowAtIndexPath:
方法。如果我注释掉该行[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
,那么除了更新 UI 之外,一切正常。
这是我对该方法的实现:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
[self.modelClass removeObjectAtRow:indexPath.row];
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
}
}
这是我得到的错误:
*** Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-2280.1/UITableView.m:1060
其他问题的答案表明我需要将 替换为@[indexPath]
,[NSArray arrayWithObject:indexPath]
而这只是出现了同样的错误。