在Xcode9中使用下拉加載獲取下一頁炬太,出現數據上移問題
出現問題原因屏富,tableview使用
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
return 20;
}
解決方法:
添加語句:
self.tableView.estimatedRowHeight = 0.0f;
self.tableView.estimatedSectionHeaderHeight = 0.0f;
// 防止獲取下一頁數據跳動問題
self.tableView.estimatedSectionFooterHeight = 0.0f;