首页 > 代码库 > Error Domain=NSURLErrorDomain Code=-999 “The operation couldn’t be completed.
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;
}
}
Error Domain=NSURLErrorDomain Code=-999 “The operation couldn’t be completed.
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。