I would like to open all external links which are in my application
(UIWebView
) not inside the app, but in Safari. How can I do that?
I have implement UiWebViewDelegate.
Working solution for my question bellow:
func webView(webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool {
if navigationType == UIWebViewNavigationType.LinkClicked{
UIApplication.sharedApplication().openURL(request.URL!)
return false
}
return true
}
@Leo Dabus thanks a lot for this hint, but I guess I have a better solution:
this one works perfect.
Solution for objective-c :- in
ViewController.h
in
ViewController.m