Is there a list of the codes UIWebView returns in - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error? For example “A server with the specified hostname could not be found.” returns -1003. Does Apple, or anyone else, provide a list with all the codes UIWebView returns?
Is there a list of the codes UIWebView returns in – (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError
Share
Not specifically UIWebView but there are header files that contain network error codes. CFNetworkErrors.h has the actual numbers and NSURLError.h has the Cocoa symbols. You should be able to find the versions of them that match your SDK by using Spotlight for those file names.