美文网首页
IOS11 tableview 适配

IOS11 tableview 适配

作者: Cyan_Queen | 来源:发表于2017-11-06 11:49 被阅读0次

// tableView 偏移20/64适配

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

self.tableView.contentInsetAdjustmentBehavior=UIScrollViewContentInsetAdjustmentNever;//UIScrollView也适用

}else{

self.automaticallyAdjustsScrollViewInsets=NO;

}

相关文章

网友评论

      本文标题:IOS11 tableview 适配

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