美文网首页
WebView iPhoneX适配

WebView iPhoneX适配

作者: 倪大头 | 来源:发表于2018-10-23 16:56 被阅读30次

    iPhoneX下的webview在最底部会有34像素白边,加入如下代码去掉

    if (@available(iOS 11.0, *)) {
        _wkWebView.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    }
    

    相关文章

      网友评论

          本文标题:WebView iPhoneX适配

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