iOS TableView reloadData刷新列表cell亂跳、tableview閃動的問題。
阿新 • • 發佈:2018-09-11
ava sin self loaddata off tab ios 11 ble float
解決方法:
在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閃動的問題。