iOS TableView reloadData刷新列表cell乱跳tableview闪动的问题。
Posted ruixin_jia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS TableView reloadData刷新列表cell乱跳tableview闪动的问题。相关的知识,希望对你有一定的参考价值。
解决方法:
在ios 11Self-Sizing自动打开后,contentSize和contentOffset都可能发生改变。可以通过以下方式禁用
self.estimatedRowHeight = 0;
self.estimatedSectionHeaderHeight = 0;
self.estimatedSectionFooterHeight = 0;
在iOS 10 以下 通过以下协议方法设置精准高度就可以了
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(7_0);
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForHeaderInSection:(NSInteger)section NS_AVAILABLE_IOS(7_0);
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section NS_AVAILABLE_IOS(7_0);
以上是关于iOS TableView reloadData刷新列表cell乱跳tableview闪动的问题。的主要内容,如果未能解决你的问题,请参考以下文章
iOS - tableView 的 reloadData 不调用 cellForRowAtIndexPath
iOS:tableView.reloadData() 在 swift3 中不起作用
iOS UITableView reloadData 刷新结束后执行后续操作