Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to launch an external safari when I click on a hyperlink in UIWebView but in my case nothing happens. If I try to include target as blank and skip the UIWebView delegate method it launches the safari within the same view..please guide me friends how to open an external browser when tapped on a link in UIWebView..here is my code..I am creating UIWebView programmatically

CGRect webFrame = CGRectMake(10,78,300,50);  
         contactUsView.delegate = self;
         contactUsView = [[UIWebView alloc] initWithFrame:webFrame];  
         [contactUsView setOpaque:NO];
         contactUsView.backgroundColor = [UIColor clearColor];  
        NSString *html = @"<html><head></head><body>Copyright \u00A9 2010 <a href='http://www.example.com'>Hello</a><br/>Hi  <a href='http://example1.com>Click here</a></body></html>";  
         [contactUsView loadHTMLString:html baseURL:[NSURL URLWithString:@"http://www.solstice-consulting.com"]]; 



- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request  
 navigationType:(UIWebViewNavigationType)navigationType; {  

    NSURL *requestURL = [ [ request URL ] retain ];  
    NSLog(@"expected:%d, got:%d", UIWebViewNavigationTypeLinkClicked, navigationType);

    if ( ( [ [ requestURL scheme ] isEqualToString: @"http" ]  
          || [ [ requestURL scheme ] isEqualToString: @"https" ] )  
        && (navigationType == UIWebViewNavigationTypeLinkClicked ) ) {  
        return ![ [ UIApplication sharedApplication ] openURL: [ requestURL autorelease ] ];  
    }  

    [ requestURL release ];  

    return YES;  
}  

The log outputs expected as 0 and got as 5..I don't understand what to do..

share|improve this question
You still have that memory leak with the retain on [request URL]. The retain is not necessary. Get rid of it. – Shaggy Frog Sep 2 '10 at 23:01

2 Answers

up vote 1 down vote accepted
NSURL *requestURL = [request URL]; 
NSString* urlString = [requestURL absoluteString];
if ([urlString isEqualToString: @"http://www.example.com"])
{

   // Try this, it will work fine

}
share|improve this answer

Change your
(navigationType == UIWebViewNavigationTypeLinkClicked)
to
(navigationType == UIWebViewNavigationTypeLinkClicked || navigationType == UIWebViewNavigationTypeOther)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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