码迷,mamicode.com
首页 > 移动开发 > 详细

ios 独立创建一条线程,去做些事情

时间:2014-08-11 21:31:22      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:style   os   io   ar   art   new   log   ad   

- (void)startLoop

{

        [NSThread detachNewThreadSelector:@selector(loopMethod) toTarget:self withObject:nil];

}


- (void)loopMethod

{

    [NSTimer scheduledTimerWithTimeInterval:3.0f target:self selector:@selector(toDo) userInfo:nil repeats:YES];

     NSRunLoop *loop = [NSRunLoop currentRunLoop];

    [loop run];

}


- (void)toDo

{

NSLog("去做些事情");

}

ios 独立创建一条线程,去做些事情,布布扣,bubuko.com

ios 独立创建一条线程,去做些事情

标签:style   os   io   ar   art   new   log   ad   

原文地址:http://blog.csdn.net/alincexiaohao/article/details/38497203

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!