I have a very simple UIWebView with content from my application bundle. I would like any links in the web view to open in Safari instead of in the web view. Is this possible?

link|improve this question

59% accept rate
feedback

2 Answers

up vote 114 down vote accepted

Add this to the UIWebView delegate:

(edited to check for navigation type. you could also pass through file:// requests which would be relative links)

-(BOOL) webView:(UIWebView *)inWeb shouldStartLoadWithRequest:(NSURLRequest *)inRequest navigationType:(UIWebViewNavigationType)inType {
    if ( inType == UIWebViewNavigationTypeLinkClicked ) {
        [[UIApplication sharedApplication] openURL:[inRequest URL]];
        return NO;
    }

    return YES;
}
link|improve this answer
drawnonward, would you mind updating your answer with reference to the answer and comments below. – Toby Allen Mar 23 '11 at 22:08
How to go back to the application once the user closes the browser? – Jhonny Everson May 28 '11 at 16:14
2  
@ Jhonny Everson: You have no control over what happens after any external app (including Safari) is closed. If you want to get back to your app when the user is done browsing, don't open up Safari, just use the UIWwbView and a "Done"-button. – geon Jul 8 '11 at 16:03
Worked like a charm with local HTML file. – Guru Mar 20 at 9:52
feedback

One quick comment to user306253's answer: caution with this, when you try to load something in the UIWebView yourself (i.e. even from the code), this method will prevent it to happened.

What you can do to prevent this (thanks Wade) is:

if (inType == UIWebViewNavigationTypeLinkClicked) {
    [[UIApplication sharedApplication] openURL:[inRequest URL]];
    return NO;
}

return YES;

You might also want to handle the UIWebViewNavigationTypeFormSubmitted and UIWebViewNavigationTypeFormResubmitted types.

link|improve this answer
7  
+1 I had the same issue. Solution was to check for UIWebViewNavigationTypeLinkClicked as the request type, THEN open the URL and return NO, otherwise return YES. – Wade Mueller Nov 2 '10 at 19:25
Wade you should post your comment as an answer – Toby Allen Mar 23 '11 at 22:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.