`

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:

 
阅读更多

在做 点击section下拉展示相应cell的功能时,遇到了闹心的“Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[__NSArrayM insertObject:atIndex:]:

 

各种debug,各种调试,都发现是系统刷新cell时发生错误

 

最后,发现之所以会导致系统的那个错误,完全是因为使用了“自适应高度的cell”

 

 

self.tableView.estimatedRowHeight = 80
self.tableView.estimatedSectionHeaderHeight = 100
self.tableView.rowHeight = UITableViewAutomaticDimension
self.tableView.sectionHeaderHeight = UITableViewAutomaticDimension

 找到问题所在之后,就简单了,删除上边的代码即可

 

 

另:如果要调试这个错误,可以添加断点:“Add Symbolic Breakpoint”-> 输入 “[NSArray insertObject:atIndex:]”

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics