非常奇怪的线程错误消息

时间:2010-05-17 02:03:05

标签: iphone cocoa-touch lua nsthread

我试图将一个方法放在后台的一个单独的线程中。它几乎可以工作,除了偶尔我收到很多带有消息

的错误消息
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行)

1 个答案:

答案 0 :(得分:1)

此链接有您的问题的参考,可能会帮助您? http://github.com/jonathanpenn/wax/commit/1b9fc96f5b8c1ae1b7b89467c74662334833694c