从主线程终止辅助线程(可可)

时间:2009-03-13 10:56:58

标签: objective-c cocoa multithreading

我正在使用cocoa框架帮助编写一个用objective-c编写的小应用程序,我遇到了多线程问题。 如果有人可以帮我提供一些关于如何从主线程终止辅助(工作者)线程的指导,我真的很感激吗?

- (IBAction)startWorking:(id)sender {
     [NSThread detachNewThreadSelector:@selector(threadMain:) toTarget:self withObject:nil];
}

- (void)threadMain
{
  // do a lot of boring, time consuming I/O here..
}

- (IBAction)stop:(id)sender {
  // what now?
}

我在apple's docs上找到了一些内容,但此示例中缺少的是runloop输入源更改 exitNow 值的部分。

另外,我不会在我的应用程序中使用很多线程,所以我更喜欢一个简单的解决方案(开销较少)而不是一个能够轻松管理多个线程的更复杂的解决方案,但会产生更多的开销(例如使用锁可能(?)而不是runloops)

提前致谢

2 个答案:

答案 0 :(得分:12)

我认为最简单的方法是使用NSThread的-(void)cancel method。您还需要对您创建的线程的引用。如果您可以将工作线程作为循环执行,那么您的示例代码将如下所示:

- (IBAction)startWorking:(id)sender {
     myThread = [[NSThread alloc] initWithTarget:self selector:@selector(threadMain:) object:nil];
     [myThread start];
}

- (void)threadMain
{
    while(1)
    {
        // do IO here
        if([[NSThread currentThread] isCancelled])
            break;
    }
}

- (IBAction)stop:(id)sender {
   [myThread cancel];
   [myThread release];
   myThread = nil; 
}

当然,这只会取消循环迭代之间的线程。所以,如果你正在进行一些长时间的阻塞计算,你必须找到一种方法将它分解成碎片,这样你就可以定期检查isCancelled。

答案 1 :(得分:2)

另请参阅NSOperation和NSOperationQueue类。这是另一组线程类,使开发工作线程模型变得非常容易。