美文网首页
【iOS11】适配问题

【iOS11】适配问题

作者: 念念不忘的 | 来源:发表于2017-09-27 11:15 被阅读49次
  • 在iOS11运行视图[view class]向下20px问题解决
if (@available(iOS 11.0, *)) {
        scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    } else {
        // Fallback on earlier versions
        self.automaticallyAdjustsScrollViewInsets = NO;
    }

相关文章

网友评论

      本文标题:【iOS11】适配问题

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