我想在顯示網站的iPad應用中創建WebView。我想阻止用戶點擊鏈接到其他網站(例如Facebook,Twitter,...)的鏈接,但他應該被允許在當前網站上自由移動。防止用戶在Swift中離開網站
我該如何做到這一點?
我試着用:
func webView(WebViewNews: UIWebView!, shouldStartLoadWithRequest request: NSURLRequest!, navigationType: UIWebViewNavigationType) -> Bool {
let newWebsite:String = (request.URL?.path)!
print(newWebsite)
if newWebsite.rangeOfString("float-schwabing") != nil{
return true;
} else {
return false;
}
}
它沒有工作,雖然。我仍然可以訪問其他網站。
如果有人能幫助我,這將是非常棒的。
檢查了這個http://stackoverflow.com/questions/2098797/disable-links-in-uiwebview –