How to detect and handle HTTP error codes in UIWebView?
- by EEE
I want to inform user when HTTP error 404 etc is received. How can I detect that?
I've already tried to implement
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
but it is not called when I receive 404 error.