NSThread注意点
如果要停止子线程,有两种方法:
第一种,是在子线程中执行:
[NSThread exit];
另一种是在主线程执行:
[cpp]
[myThread cancel];
要注意的是,[mThread cancel]; 并不能exit线程,只是标记为canceled,但线程并没有死掉。加入你在子线程中执行了一个循环,则cancel后,循环还在继续,你需要在循环的 条件判断中加入 !mThread.isCancelled 来判断子线程是否已经被cancel来决定是否继续循环。
/** 4.取消线程 */ NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(threadMethod4) object:nil]; [thread start]; //3秒后终止 dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ //取消 [thread cancel]; });
- (void)threadMethod4 { while (1) { //线程休眠(单位是秒) [NSThread sleepForTimeInterval:1]; //判断线程是否是取消状态 if ([NSThread currentThread].isCancelled) { //退出线程 [NSThread exit]; } NSLog(@"--------------"); } }