几句代码完美适配 iOS11

2017-11-10  本文已影响0人  UILable攻城狮

在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;
 }
上一篇 下一篇

猜你喜欢

热点阅读