美文网首页
iOS11&IPhoneX适配(2)

iOS11&IPhoneX适配(2)

作者: MJBaby | 来源:发表于2018-12-03 09:19 被阅读64次

    1、iOS11 scrollview 显示时会有滚动效果

    消除的方法:
    if ([self.tableView respondsToSelector:@selector(setContentInsetAdjustmentBehavior:)]) {
        if (@available(iOS 11.0, *)) {
            self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
        } else {
            // Fallback on earlier versions
        }
    }
    

    相关文章

      网友评论

          本文标题:iOS11&IPhoneX适配(2)

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