首页 > 代码库 > UITableView _configureCellForDisplay:forIndexPath: crash

UITableView _configureCellForDisplay:forIndexPath: crash

Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:], /SourceCache/UIKit/UIKit-3318.16.21/UITableView.m
有时候用storyboard做uitableview会遇到这种bug,首先呢,你要检查下,自己写得cellide与storyboard里的cell的cellIde是否对应技术分享

如果不是这个地方,那就有可能是

技术分享

这个地方,看是不是被别人设置为static cell了,如果要用cellForRowAtIndex对cell进行复用的话,一定要用动态的,当然,如果你的cell只用一次,那你就用static cell吧,这样,numberofsection这些都省了

UITableView _configureCellForDisplay:forIndexPath: crash