如何从通过NSthread调用的函数中获取返回值?

时间:2012-04-15 11:05:24

标签: iphone objective-c ios ipad nsthread

我写了一个返回一个对象的函数。但它是一个从web获取数据的函数。因此NSthread用于调用函数。

 NSThread* pageThread = [[NSThread alloc]initWithTarget:self selector:@selector(threadFunction) object:nil];

如何从通过NSthread调用的函数中获取返回值?

1 个答案:

答案 0 :(得分:1)

方法不应该返回“返回值”,但它应该更新一个类iVar并通知谁正在等待它现在准备好的对象(通过通知我不一定是指NSNotificationCenter)。祝你好运。