Khant Thu Linn
Khant Thu Linn

Reputation: 6133

Webview didFailLoadWithError error code -999

In this code, UIWebView fails to load, I saw this:

Error Domain=NSURLErrorDomain Code=-999 "The operation couldn’t be completed. (NSURLErrorDomain error -999.)" UserInfo=0x1c0e36e0 {NSErrorFailingURLKey=http://tpc.googlesyndication.com/safeframe/1-0-2/html/container.html#xpc=sf-gdn-exp-3&p=http%3A//blog.moneysmart.sg, NSErrorFailingURLStringKey=http://tpc.googlesyndication.com/safeframe/1-0-2/html/container.html#xpc=sf-gdn-exp-3&p=http%3A//blog.moneysmart.sg}

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error 
{}

May I know what is the error code -999?

Upvotes: 2

Views: 4318

Answers (1)

Samraan Khaan
Samraan Khaan

Reputation: 480

It actually means that another request is made before the previous request is completed.

Upvotes: 1

Related Questions