从 UITableViewController 中删除 table 单元会导致崩溃?
delete table cell from UITableViewController causes crash?
我在我的 iOS 应用程序中添加了以下代码以从 UITableViewController 中删除 table 单元格,但我收到有关删除的错误消息。
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if(editingStyle == UITableViewCellEditingStyleDelete){
[self.toDoItems removeObjectAtIndex:indexPath.row];
NSArray *indexPaths = @[indexPath];
[self.tableView deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationAutomatic];
}
}
更新:
toDoItems 只是一个 NSArray,我尝试了以下代码但仍然无法正常工作:
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if(editingStyle == UITableViewCellEditingStyleDelete){
NSArray *indexPaths = @[indexPath];
[self.tableView deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationAutomatic];
[self.toDoItems removeObjectAtIndex:indexPath.row];
}
}
错误信息在这里:
'NSInternalInconsistencyException',原因:'Invalid update: invalid number of rows in section 1. The number of rows contained in an existing section after the update (1003) must be equal to the number of rows contained in that section before the update (1004), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'
Xcode 6.2 iOS6
我已经试过了Deleting table cell causes crash
问题是您从数据模型中删除了错误的对象:
[self.toDoItems removeObjectAtIndex:indexPath.row];
这也太简单了吧。您在此 table 中有多个部分。您需要一个区分这些部分的数据模型,并且您需要先从数据模型中的正确部分 中删除正确的行 ,然后再从 table 中删除相应的行。您无法通过单独查看 indexPath.row
来做到这一点;您需要构建数据模型以便同时考虑 indexPath.section
。
我在我的 iOS 应用程序中添加了以下代码以从 UITableViewController 中删除 table 单元格,但我收到有关删除的错误消息。
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if(editingStyle == UITableViewCellEditingStyleDelete){
[self.toDoItems removeObjectAtIndex:indexPath.row];
NSArray *indexPaths = @[indexPath];
[self.tableView deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationAutomatic];
}
}
更新: toDoItems 只是一个 NSArray,我尝试了以下代码但仍然无法正常工作:
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if(editingStyle == UITableViewCellEditingStyleDelete){
NSArray *indexPaths = @[indexPath];
[self.tableView deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationAutomatic];
[self.toDoItems removeObjectAtIndex:indexPath.row];
}
}
错误信息在这里:
'NSInternalInconsistencyException',原因:'Invalid update: invalid number of rows in section 1. The number of rows contained in an existing section after the update (1003) must be equal to the number of rows contained in that section before the update (1004), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'
Xcode 6.2 iOS6
我已经试过了Deleting table cell causes crash
问题是您从数据模型中删除了错误的对象:
[self.toDoItems removeObjectAtIndex:indexPath.row];
这也太简单了吧。您在此 table 中有多个部分。您需要一个区分这些部分的数据模型,并且您需要先从数据模型中的正确部分 中删除正确的行 ,然后再从 table 中删除相应的行。您无法通过单独查看 indexPath.row
来做到这一点;您需要构建数据模型以便同时考虑 indexPath.section
。