I used the code below to launch safari when user taps an URL link of a web page display on web view:
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request
navigationType:(UIWebViewNavigationType)navigationType
{
if (navigationType == UIWebViewNavigationTypeLinkClicked)
{
if (![[UIApplication sharedApplication] openURL:[request URL]])
return NO;
}
else
{
return YES;
}
}
It works both on iOS 4 and iOS 5.
However, on iOS4, it launched safari, but when I closed the browser and went back to app, web view was continuing to go to the url I'd sent to safari.
How to avoid this?