1.第一种方式
//创建线程
NSThread *thread=[[NSThread alloc]initWithTarget:self selector:@selector(act1) object:nil];
//启动线程
[thread start];
2.第二种方式,创建并启动线程
[NSThread detachNewThreadSelector:@selector(act2) toTarget:self withObject:nil];
1.第一种方式
//创建线程
NSThread *thread=[[NSThread alloc]initWithTarget:self selector:@selector(act1) object:nil];
//启动线程
[thread start];
2.第二种方式,创建并启动线程
[NSThread detachNewThreadSelector:@selector(act2) toTarget:self withObject:nil];
本文标题:两种NSThread创建方式
本文链接:https://www.haomeiwen.com/subject/olvhjttx.html
网友评论