美文网首页
几句代码完美适配 iOS11

几句代码完美适配 iOS11

作者: UILable攻城狮 | 来源:发表于2017-11-10 09:30 被阅读0次

在Appdelegate.m中的didFinishLaunchingWithOptions 方法中添加如下代码,就全局搞定了!

if (@available(ios 11.0,*))
 {
        UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
        UITableView.appearance.estimatedRowHeight = 0;
        UITableView.appearance.estimatedSectionFooterHeight = 0;
        UITableView.appearance.estimatedSectionHeaderHeight = 0;
 [UITableView appearance].contentInsetAdjustmentBehavior = UIScreenOverscanCompensationNone;
 }

相关文章

网友评论

      本文标题:几句代码完美适配 iOS11

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