在使用wkWebView的时候发现用webView加载youku.com,里面的视频链接点击是可以跳转的,但是呢,加载v.qq.com的时候发现链接点击又没有效果,折腾了很久最后找到解决方案
实现WKUIDelegate代理方法
func webView(_ webView: WKWebView, createWebViewWith configuration: WKWebViewConfiguration, for navigationAction: WKNavigationAction, windowFeatures: WKWindowFeatures) -> WKWebView? {
if let isMainFrame = navigationAction.targetFrame?.isMainFrame {
if !isMainFrame{
webView.load(navigationAction.request)
}
}
return nil
}