現(xiàn)象
一個(gè)分頁(yè)顯示的列表,每次上拉加載刷新tableView的時(shí)候頁(yè)面都會(huì)跳動(dòng)一下,對(duì)比發(fā)現(xiàn)此問(wèn)題是在iOS11之后會(huì)出現(xiàn)。
解決辦法
self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
self. tableView.estimatedSectionHeaderHeight = 0;
這樣操作之后,每次上拉加載新數(shù)據(jù)時(shí)頁(yè)面不會(huì)再抖動(dòng)鸽斟,完美解決!