我写了一个返回对象的函数。但它是一个从 web 获取数据的函数。所以 NSthread 用于调用该函数。
NSThread* pageThread = [[NSThread alloc]initWithTarget:self selector:@selector(threadFunction) object:nil];
如何从通过 NSthread 调用的函数中获取返回值?
我写了一个返回对象的函数。但它是一个从 web 获取数据的函数。所以 NSthread 用于调用该函数。
NSThread* pageThread = [[NSThread alloc]initWithTarget:self selector:@selector(threadFunction) object:nil];
如何从通过 NSthread 调用的函数中获取返回值?