我试图将一个方法放在后台的一个单独的线程中。它几乎可以工作,除了偶尔我收到很多带有消息
的错误消息METHODCLOSURE: OH NO SEPERATE THREAD
拼写错误和所有。
有谁知道这意味着什么?线程运行,有趣的是
更具体地说: 我通过
调用后台进程[self performSelectorInBackground:@selector(finishedRunningThreadData:) withObject:e];
方法是
- (void)finishedRunningThreadData:(NSString *) e
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
//call iPhone-wax methods here which might call ObjC thread.
[pool release];
}
答案:错误信息来自蜡-iPhone。它首先检查它运行的线程。 (wax-instance.h 337行)
答案 0 :(得分:1)