iOS11 TableView 及其他问题汇总

1:在tableView 在reload 的时候,会跳动问题和 tableview style 为group时现实乱的问题

解决:

if(@available(iOS11.0, *)) {

self.tableView.contentInsetAdjustmentBehavior=UIScrollViewContentInsetAdjustmentNever;

self.tableView.estimatedRowHeight=0;

self.tableView.estimatedSectionFooterHeight=0;

self.tableView.estimatedSectionHeaderHeight=0;

}else{

self.automaticallyAdjustsScrollViewInsets=NO;

}

你可能感兴趣的:(iOS11 TableView 及其他问题汇总)