我写了一个返回一个对象的函数。但它是一个从web获取数据的函数。因此NSthread用于调用函数。
NSThread* pageThread = [[NSThread alloc]initWithTarget:self selector:@selector(threadFunction) object:nil];
如何从通过NSthread调用的函数中获取返回值?
答案 0 :(得分:1)
方法不应该返回“返回值”,但它应该更新一个类iVar并通知谁正在等待它现在准备好的对象(通过通知我不一定是指NSNotificationCenter)。祝你好运。