在睡觉时退出NSThread?

时间:2012-09-20 04:42:50

标签: ios nsthread

我正在创建一个运行我的方法之一的新线程: 现在我正在做的事情如下:

NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(myThreadFunc) object:nil];
[thread start];

在myThreadFunc

{
     while(isRunning){
         [self updateSomething];
         [NSThread sleepForTimeInterval:3.0];
     }
     NSLog(@"out");
}

在另一个函数中,我设置了isRunning = NOthread = nil[thread cancel],但myThreadFunc正在休眠,因此线程无法退出。 我怎么能控制这个案子? 非常感谢。

1 个答案:

答案 0 :(得分:1)

不要使用线程。使用计时器。如果某些东西很昂贵,请将其发送到主队列以外的某个队列,并设置一些状态变量以显示它仍在运行(如果某些东西不是为了同时运行)。然后,只需取消您的计时器。定时器回调函数的一个简单示例可能是:

- (void)doSomething:(NSTimer*)timer
{
  // this assumes that this "something" only ever
  // runs once at a time no matter what, adjust this
  // to an ivar if it's per-class instance or something
  static BOOL alreadyDoingSomething = NO;
  if( alreadyDoingSomething ) return;
  alreadyDoingSomething = YES;
  dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
    [self updateSomething];
    alreadyDoingSomething = NO;
  });
}

现在,如果您只是取消计时器,这将停止运行。当您准备再次启动时,请使用此方法作为指定选择器安排新计时器。要使其行为与上面的示例类似,您可以将计时器间隔设置为三秒。