我正在尝试在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...
请帮我解决这个错误。
提前致谢。
答案 0 :(得分:1)
您不应在另一个主题上使用UIWebView
或UIWebViewDelegate
。
在main之外的线程上使用UIKit
会导致线程锁定,并且很可能会崩溃。