美文网首页
iOS11 TableView 及其他问题汇总

iOS11 TableView 及其他问题汇总

作者: York_Lee | 来源:发表于2017-09-21 11:35 被阅读0次

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 及其他问题汇总

      本文链接:https://www.haomeiwen.com/subject/ezszsxtx.html