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;
}
网友评论