NSURLErrorDomain错误-999的weblock错误

时间:2011-11-04 06:32:54

标签: iphone objective-c ios nsurl

我正在尝试在UIWebview中加载twitter链接。我遇到了NSURLErrorDomain错误

The operation couldn’t be completed.(NSURLErrorDomain error -999.) 

我通过编写代码

解决了这个问题
if([error code] == NSURLErrorCancelled) {**  

return; 

 }

didFailLoadWithError委托方法中。

在此之后,我对NSURLErrorDomain错误没有任何问题。但每次解决此错误后,应用程序因错误而崩溃

bool _WebTryThreadLock(bool), 0x5f82bf0: Tried to obtain the web lock from a thread other than the main thread or the web thread. This may be a result of calling to UIKit from a secondary thread. Crashing now...

请帮我解决这个错误。

提前致谢。

1 个答案:

答案 0 :(得分:1)

您不应在另一个主题上使用UIWebViewUIWebViewDelegate。 在main之外的线程上使用UIKit会导致线程锁定,并且很可能会崩溃。