美文网首页
两种NSThread创建方式

两种NSThread创建方式

作者: 少爷1103 | 来源:发表于2016-07-05 14:29 被阅读0次

    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