UIWebView not go to didFailLoadWithError when webLink not found?
问题 I use UIWebView to load web from a webLink and UIWebViewDelegate to control error state: [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:webLink]]]; - (void)webViewDidStartLoad:(UIWebView *)webView{ NSLog(@"START LOAD"); } - (void)webViewDidFinishLoad:(UIWebView *)webView{ NSLog(@"FINISH LOAD"); } - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error{ NSLog(@"ERROR : %@",error); } But when webLink not found, it NOT go to didFailLoadWithError , it go