如何在iOS uiwebview上禁用特定链接?在 web 视图中加载的页面可以有数千个 URL,但我想禁用一个 URL。
我感觉到我必须在工作中使用这种方法。但想不通。
func webView(webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool {
}
我正在使用objective-c。抱歉,如果我的快速代码是错误的。我希望你理解逻辑。
试试吧。
func webView(_ webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool {
let surl = request.url?.absoluteString
if surl == "http://disableurl.com" {
return false;
}
return true;
}