How to detect and handle HTTP error codes in UIWebView?
Posted
by EEE
on Stack Overflow
See other posts from Stack Overflow
or by EEE
Published on 2010-02-10T11:30:23Z
Indexed on
2010/06/07
12:02 UTC
Read the original article
Hit count: 269
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.
© Stack Overflow or respective owner