Swift-UITableView
2018-07-05 本文已影响83人
Mccc_
一. 刷新或者加载的时候,页面跳动
解决:
// 设置tableView的属性 (self指代当前的tableView对象)
self.estimatedRowHeight = 0
self.estimatedSectionFooterHeight = 0
self.estimatedSectionFooterHeight = 0
原因:
为了提高性能,UITableView在iOS11后引入了估算高度,源码是这样解释的:
// Use the estimatedHeight methods to quickly calcuate guessed values which will allow for fast load times of the table.
// If these methods are implemented, the above -tableView:heightForXXX calls will be deferred until views are ready to be displayed, so more expensive logic can be placed there.
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(7_0);
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForHeaderInSection:(NSInteger)sectionNS_AVAILABLE_IOS(7_0);
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)sectionNS_AVAILABLE_IOS(7_0);
没有实现estimatedHeightForRowAtIndexPath方法时,调用顺序如下:
1、numberOfRowsInSection
2、heightForRowAtIndexPath
3、cellForRowAtIndexPath
如果实现了estimatedHeightForRowAtIndexPath方法,调用顺序如下:
1、numberOfRowsInSection(不变)
2、estimatedHeightForRowAtIndexPath
3、cellForRowAtIndexPath
4、heightForRowAtIndexPath
大概就是说我们不再需要自己去计算cell的高度了,只要设置好(rowHeight
和estimatedRowHeight
)这两个属性,约束好布局,系统会自动计算好cell的高度。IOS11以后,Self-Sizing默认开启,包括Headers, footers。如果项目中没使用estimatedRowHeight属性,在IOS11下会有奇奇怪怪的现象,因为IOS11之前,estimatedRowHeight默认为0,Self-Sizing自动打开后,contentSize和contentOffset都可能发生改变.所以如果没使用的话直接设置为0禁用掉就好了。