1.线程的状态
NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];
[thread start];
2.控制线程状态
2.1>启动线程 -(void)start;
//进入就绪状态->运行状态.当线程任务执行完毕,会自动进入死亡状态
2.2>阻塞(暂停)线程
+(void)sleepUntilDate:(NSDate *)date
+(void)sleepForTimeInterval:(NSTimeInterval)time;
2.3>强制停止线程
+(void)exit; //进入死亡状态
注意:一旦线程停止(死亡)了,就不能再次开启任务
OC中线程的状态相关
时间: 2024-10-17 05:41:56