3

欢迎!我整个上午都在做这个,但没有香蕉;也许你有洞察力!

我正在使用标准NSMutableArray

self.itemTable = [[NSMutableArray alloc]
                 initWithObjects:@"House.",
                 @"Car.",
                 @"Keys.", nil];

现在,当我在导航栏中按“编辑”并删除一行时,我收到以下错误消息

由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“无效更新:第 0 节中的行数无效。更新 (3) 后现有节中包含的行数必须等于该节中包含的行数更新前的节 (3),加上或减去从该节插入或删除的行数(0 插入,1 删除),加上或减去移入或移出该节的行数(0 移入,0 移动出去)。'

我将此代码用于“删除”命令:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {


[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];

}

关于如何使删除行功能起作用的任何见解?

编辑

找到它:将以下代码行放入工作中:

[self.itemTable removeObjectAtIndex:indexPath.row];

这使得删除代码:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {

[self.itemTable removeObjectAtIndex:indexPath.row];

[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];

}
4

3 回答 3

1

我遇到了同样的问题。工作后找到了解决方案。这里我的崩溃实际上是由于从数组中删除项目后调用 tableview reload 。在崩溃报告中提到,在编辑/更新部分中的 tableview 行之前和之后必须相等。

波纹管代码工作正常:

 // Override to support editing the table view.
 - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
     if (editingStyle == UITableViewCellEditingStyleDelete)
     {
        //add code here for when you hit delete
        [self deleteItemAtRowIndex:indexPath];
    }
}


-(void)deleteItemAtRowIndex:(NSIndexPath *)indexpath
{
[pTableDataDataArray removeObjectAtIndex:indexpath.row];

[pTableView beginUpdates];
//[self LoadTempletesData];    no need to reload, simply remove row that to is to be delete
[pTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexpath] withRowAnimation:UITableViewRowAnimationNone];
//make changes
[pTableView endUpdates];
}

希望它可以帮助别人

于 2015-03-27T08:02:57.370 回答
0

请记住,每次从表中添加或删除内容时都要更新数据源,这些内容是从数据源本身获取的。

于 2015-03-27T09:05:54.293 回答
0

(您似乎已经注意到)您必须在插入或删除行之前更新数据源。有时你会想做一些花哨的事情,比如添加和删除行。(我这样做是为了隐藏一部分行并显示另一部分)。如果你需要同时做这两个,你可以使用这个构造

[tableView beginUpdates];
//make changes
[tableView endUpdates];
于 2013-06-21T03:32:32.340 回答