iOS swift 3.0 UIWebView&WKWebView 劫持点击链接事件,在Safari中打开

swift 3.0 UIWebView

// swift 3.0 UIWebView
func webView(_ webView: UIWebView, shouldStartLoadWith request: URLRequest, navigationType: UIWebViewNavigationType) -> Bool {
        
        BaiduMobStat.default().webviewStartLoad(with: request)
        
        let requestURLScheme = request.url?.scheme

        if (requestURLScheme == "http" || requestURLScheme == "http" || requestURLScheme == "http") && navigationType == .linkClicked {
            
            return !UIApplication.shared.openURL(request.url!)

        }
        
        return true
    }

swift 3.0 WKWebView

// swift 3.0 WKWebView
    func webView(webView: WKWebView, decidePolicyForNavigationAction navigationAction: WKNavigationAction, decisionHandler: (WKNavigationActionPolicy) -> Void) {
        
        let requestURLScheme = navigationAction.request.url?.scheme
        
        if (requestURLScheme == "http" || requestURLScheme == "http" || requestURLScheme == "http") && navigationAction.navigationType == .linkActivated {
            
            if UIApplication.shared.openURL(navigationAction.request.url!) {
                decisionHandler(.cancel)
            }else{
                decisionHandler(.allow)
            }
            
        }
        
        decisionHandler(.allow)
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容