解决iOS11刷新tableview会出现漂移和抽疯的现象

在初始化tableview的时候加上这几行

 _tableView.estimatedRowHeight = 0;
 _tableView.estimatedSectionHeaderHeight = 0;
 _tableView.estimatedSectionFooterHeight = 0;

你可能感兴趣的:(解决iOS11刷新tableview会出现漂移和抽疯的现象)