美文网首页
Assertion failure in -[UISection

Assertion failure in -[UISection

作者: 碧海云天V | 来源:发表于2018-09-29 15:33 被阅读17次

Assertion failure in [UISectionRowData refreshWithSection:tableView:tableViewRowData:],
/BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit/UIKit-3600.9.1/UITableViewRowData.m:443

在iOS 11上运行没问题, iOS 10 报错.

tableView.sectionFooterHeight = 0.1;
tableView.sectionHeaderHeight = 0.1;
tableView.estimatedSectionHeaderHeight = 0.1;
tableView.estimatedSectionFooterHeight = 0.1;

解决办法:
1 、注释掉以上代码, 用代理实现;
2、把0.1 改成大于1的任意数都可以, 1.1 , 1.5 ;
3、把0.1 改成0。

相关文章

网友评论

      本文标题:Assertion failure in -[UISection

      本文链接:https://www.haomeiwen.com/subject/qtqboftx.html