iOS调用reloadRowsAtIndexPaths Crash报异常NSInternalInconsistencyException

Posted 阿曌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS调用reloadRowsAtIndexPaths Crash报异常NSInternalInconsistencyException相关的知识,希望对你有一定的参考价值。

背景

在更新 TableView 的时候调用[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationFade];crash掉了,报异常attempt to delete row 0 from section 0 which only contains 0 rows before the update

原因

在调用reloadRowsAtIndexPaths时,依赖于tableView先前的状态已有要更新的cell,它内部是先删除该cell,再重新创建,所以当你在原先没有该cell的状态下调用reloadRowsAtIndexPaths,会报异常你正在尝试不存在的cell。

简言之,如果你要改变tableView的cell数量,就不要调用更新局部的cell方法。

解决办法

1.使用reloadData
reloadData是完全重新加载,包括cell数量也会重新计算,不会依赖之前tableView的状态。

2.使用beginUpdatesendUpdates(未自验证,验证者可留言)

  1. 当你在将要更改cell数量的时候都要通知tableView更新(调用[tableView beginUpdates];
  2. 添加时通知使用方法(void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
  3. 移除时通知使用方法 (void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
  4. 当你已经更改cell数量的时候都要告诉tableView更新完毕(调用[tableView endUpdates];

References:
StackOverflow - Crash on reloadRowsAtIndexPath but not on reloadData
StackOverflow - reloadRowsAtIndexPaths:withRowAnimation: crashes my app

以上是关于iOS调用reloadRowsAtIndexPaths Crash报异常NSInternalInconsistencyException的主要内容,如果未能解决你的问题,请参考以下文章

ios怎样调用类方法?

iOS开发-iOS调用相机调用相册将图片保存到本地相册

ios/安卓:api调用证件识别

touchesBegan 在 iOS 12 中被调用,但在 iOS 13 中未被调用

ios cell的刷新调用哪些方法

iOS开发--探究iOS线程调用栈及符号化