解决可能存在的reload后页面抖动的问题
2019-10-10 本文已影响0人
ShawMoolan
if (@available(iOS 11.0, *)){//解决了reload后页面抖动的问题
//_tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
_tableView.estimatedRowHeight = 0;
_tableView.estimatedSectionHeaderHeight = 0;
_tableView.estimatedSectionFooterHeight = 0;
}