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

- (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 独立创建一条线程,去做些事情

上一篇:Android Tween动画


下一篇:Android Handler主线程和一般线程通信的应用分析