Error Domain=NSURLErrorDomain Code=-999 “The operation couldn’t be completed.

转:http://www.wangzhengdong.com/blog/error-domainnsurlerrordomain-code-999-the-operation-couldnt-be-completed.html

– (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error

 

{

    

    //一个页面没有被完全加载之前收到下一个请求,此时迅速会出现此error,error=-999

    

    //此时可能已经加载完成,则忽略此error,继续进行加载。

    

    //http://stackoverflow.com/questions/1024748/how-do-i-fix-nsurlerrordomain-error-999-in-iphone-3-0-os

    

    if([error code] == NSURLErrorCancelled)

        

    {

        

        return;

        

    }

    

}

posted @ 2016-10-08 18:24  第三维  阅读(1707)  评论(0编辑  收藏  举报