标签:des style tar ext color com
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; //进入死亡状态
注意:一旦线程停止(死亡)了,就不能再次开启任务
标签:des style tar ext color com
原文地址:http://www.cnblogs.com/ttgb/p/3805230.html