美文网首页
'Returned WKWebView was not crea

'Returned WKWebView was not crea

作者: _菩提本无树_ | 来源:发表于2018-05-30 16:48 被阅读0次
- (WKWebView *)webView:(WKWebView *)webView createWebViewWithConfiguration:(WKWebViewConfiguration *)configuration forNavigationAction:(WKNavigationAction *)navigationAction windowFeatures:(WKWindowFeatures *)windowFeatures{
    //该方法是说不需要新建,我只需要在我自己的上加载界面
    WKFrameInfo *frameInfo = navigationAction.targetFrame;
    if (![frameInfo isMainFrame]) {
        [webView loadRequest:navigationAction.request];
    }
    return nil;
    
}

想了解更多的细节可以参考这篇文章说的很好的

相关文章

网友评论

      本文标题:'Returned WKWebView was not crea

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