본문 바로가기
옛날

UIWeview 링크 새창

by 차가운게 조아 2015. 12. 15.

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

    

    

    //  open External Links (not beginning with www.playbuzz.org/ in Safari.app

    if (

        (navigationType == UIWebViewNavigationTypeLinkClicked) &&

        ( ![[[request URLabsoluteStringhasPrefix:@"http://www.naver.com/"])

        ) {

        

        [[UIApplication sharedApplicationopenURL:request.URL];

        return NO;

    }

    

    //open Internal links in uiwebview

    return YES;

 

}