一个分页显示的列表,每次上拉加载刷新tableView的时候页面都会跳动一下,对比发现此问题是在iOS11之后会出现。
解决办法:
self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
self. tableView.estimatedSectionHeaderHeight = 0;
一个分页显示的列表,每次上拉加载刷新tableView的时候页面都会跳动一下,对比发现此问题是在iOS11之后会出现。
解决办法:
self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
self. tableView.estimatedSectionHeaderHeight = 0;