gpt4 book ai didi

iPhone:如何使用performSelector:onThread:withObject:waitUntilDone:方法?

转载 作者:行者123 更新时间:2023-12-03 18:20:46 26 4
gpt4 key购买 nike

我正在尝试使用单独的线程来处理某些 API。

问题是我无法将 performSelector:onThread:withObject:waitUntilDone: 方法与我为此实例化的线程一起使用。

我的代码:

@interface MyObject : NSObject {
NSThread *_myThread;
}
@property(nonatomic, retain) NSThread *myThread;
@end

@implementation MyObject
@synthesize myThread = _myThread;
- (NSThread *)myThread {
if (_myThread == nil) {
NSThread *myThreadTemp = [[NSThread alloc] init];
[myThreadTemp start];
self. myThread = myThreadTemp;
[myThreadTemp release];
}
return _myThread;
}

- (id)init {
if (self = [super init]) {
[self performSelector:@selector(privateInit:) onThread:[self myThread] withObject:nil waitUntilDone:NO];
}
return self;
}
- (void)privateInit:(id)object {
NSLog(@"MyObject - privateInit start");
}

- (void)dealloc {
[_myThread release];
_myThread = nil;
[super dealloc];
}
@end

“MyObject - privateInit start” 永远不会被打印。
我错过了什么?

我尝试使用目标和选择器实例化线程,尝试等待方法执行完成(waitUntilDone:YES)。
没有任何帮助。

更新:
我不需要这种多线程来将昂贵的操作分离到另一个线程。
在这种情况下,我可以使用performSelectorInBackground,如几个答案中提到的。
使用此单独线程的主要原因是需要从一个线程执行 API 中的所有操作(Loquendo 的 TTS)。
这意味着我必须创建 TTS 对象的实例并始终从同一线程调用该对象的方法。

最佳答案

我找到了答案!

为了保持线程正常运行,需要额外的代码:

- (void)threadMain:(id)data {
NSAutoreleasePool *pool = [NSAutoreleasePool new];

NSRunLoop *runloop = [NSRunLoop currentRunLoop];
[runloop addPort:[NSMachPort port] forMode:NSDefaultRunLoopMode];

while (isAlive) { // 'isAlive' is a variable that is used to control the thread existence...
[runloop runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}

[pool release];
}


下一行:

NSThread *myThreadTemp = [[NSThread alloc] init];

应该替换为这个:

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

编辑:按照这里少数人的建议,我添加了几行代码(NSAutoreleasePool、addPort 方法和“isAlive” bool 值)。

关于iPhone:如何使用performSelector:onThread:withObject:waitUntilDone:方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2584394/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com