Created
January 5, 2013 22:52
-
-
Save waynehartman/4464137 to your computer and use it in GitHub Desktop.
UIWebView Delegate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma mark - UIWebViewDelegate | |
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error { | |
if (error.code != NSURLErrorCancelled) { | |
} | |
} | |
- (void)webViewDidFinishLoad:(UIWebView *)webView { | |
} | |
- (void)webViewDidStartLoad:(UIWebView *)webView { | |
} | |
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType { | |
return YES; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment