轉: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;
}
}
