Skip to content

Instantly share code, notes, and snippets.

@srm
Created July 21, 2012 03:12
Show Gist options
  • Save srm/3154424 to your computer and use it in GitHub Desktop.
Save srm/3154424 to your computer and use it in GitHub Desktop.
Preventing UIWebView Navigation
-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
BOOL someOtherCondition = [request.URL.scheme isEqualToString:@"http"];
if((navigationType == UIWebViewNavigationTypeLinkClicked)&&(someOtherCondition)){
return NO;
}
else {
return YES;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment