我遇到了一个问题,我有一个uitableview,行说5。 如果用户选择了一行,那么应该使用动画创建/插入在抽头行正好下方的新行(正如我们已经看到的部分隐藏/取消隐藏),并且在点击新插入的行时应该删除它。
我试了一下但是说
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid
update: invalid number of rows in section 0. The number of rows contained in an existing section
after the update (6) must be equal to the number of rows contained in that section before the update
(5), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted).'
那么实现此功能的其他方法应该是什么? 提前谢谢。
答案 0 :(得分:2)
最初你有5行。您向表中添加了一个新行,假设使用addRowsAtIndexPaths:方法。此时,您的表视图将调用其数据源方法,因为它需要添加此新单元格。
但是,您的数据源方法可能还有返回的行数为5(而不是6),导致不一致(因为表视图需要6行而您仍然返回5行)
因此,假设当表视图为新创建的单元格调用cellForRowAtIndexPath:方法时(行= 5),它可能会崩溃,因为您必须执行以下操作:
[yourDatasourceArray objectAtIndex:indexPath.row];
上面的语句会导致崩溃,因为indexPath.row是5并且你的数组中仍然有5个对象(索引0到4)。因此objectAtIndex:5导致崩溃。
答案 1 :(得分:0)
- (NSInteger)numberOfRowsInSection:(NSInteger)section {
switch (section) {
case 0:
return numberOfRows;
}
return 0;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
numberOfRows ++;
[tableView deselectRowAtIndexPath:indexPath animated:NO];
NSMutableArray* tempArray = [[NSMutableArray alloc] init];
[tempArray addObject:[NSIndexPath indexPathForRow:indexPath.row +1 inSection:indexPath.section]];
[tableView beginUpdates];
[tableView insertRowsAtIndexPaths:tempArray withRowAnimation:UITableViewRowAnimationRight];
[tableView endUpdates];
[tempArray release];
}
我犯了2个错误 1)我没有在更新后使用[tableView beginUpdates]和显然[tableView endUpdates] 2)计算newRow的索引路径的方法是不明确的。
非常感谢pratikshabhisikar和Max Howell花时间和精力。