Skip to main content

Posts

Showing posts with the label Stop Hyperlink in WebView

UIWebView: Stop Hyperlinking

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{      if (navigationType == UIWebViewNavigationTypeLinkClicked) {         //[[UIApplication sharedApplication] openURL:request.URL];         // Return false to indicate to the UIWebView to not navigate to the linked target         return FALSE;     }    return YES; }