码迷,mamicode.com
首页 > 移动开发 > 详细

iOS TableView reloadData刷新列表cell乱跳、tableview闪动的问题。

时间:2018-09-11 16:19:39      阅读:442      评论:0      收藏:0      [点我收藏+]

标签:dexp   span   打开   offset   ted   content   方式   协议   解决   

解决方法:

在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闪动的问题。

标签:dexp   span   打开   offset   ted   content   方式   协议   解决   

原文地址:https://www.cnblogs.com/ruixin-jia/p/9627682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!