当我尝试在线程中执行时:
UITextView *aDescriptionView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, 25, 50)];
我收到此错误:
bool _WebTryThreadLock(bool), 0x2819b0: 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...
这里出了什么问题?我该怎么办?我必须在一个单独的线程中使用它,因为它返回一个UIView对象。
答案 0 :(得分:5)
除了主线程之外,您不能从任何线程访问UI。如初。