美文网首页
UITableView 刷新reloadSections界面错乱

UITableView 刷新reloadSections界面错乱

作者: dalu | 来源:发表于2022-01-07 16:42 被阅读0次

什么情况下会发生这种现象呢?
1.tableview有Section组,2.cell里有展开和折叠情况(类型QQ好友那种展开和折叠)。

在超出一屏的情况下不管调用 [tableview reloadData]还是调用[tableView reloadSections:withRowAnimation:]都会发送错乱。(如图一) 图一

解决方案:加入下面代码就OK了

self.tableView.estimatedRowHeight = 0.0;
self.tableView.estimatedSectionHeaderHeight = 0.0;
self.tableView.estimatedSectionFooterHeight = 0.0;

相关文章

网友评论

      本文标题:UITableView 刷新reloadSections界面错乱

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