Invalid update: invalid number of rows in section 0. The number of rows contained in an ....

本文解析了一个关于TableView在删除一行Cell时出现的错误,并提供了具体的代码示例与修改建议。错误提示为无效更新:无效的行数。文章指出问题出现在模型数组的复制过程中,并给出了修正方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

报错提示:

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 (1) must be equal to the number of rows contained in that section before the update (1), plus or minus the number of rows inserted or deleted from that section (0 inserted, 1 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).’


我是在使用tabelView删除一行cell时 报这个错.
objectC
UITableViewRowAction *deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault
handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
NSMutableArray *tempModelAry = [NSMutableArray arrayWithArray:self.modelAry];
[tempModelAry removeObjectAtIndex:indexPath.row];
self.modelAry = tempModelAry.copy;
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}];


原因是 self.modelAry = tempModelAry.copy; 我在self.modelAry的set方法里写了 tabelView reload 的方法.


解决办法是 把self.modelAry 变成 _modelAry 就好了.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值