禁用 iOS UIBewView 上的特定链接



如何在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;
 }

相关内容

  • 没有找到相关文章

最新更新