IOS在子线程中使用定时器,将定时器添加至RunLoop中

来源:互联网 发布:淘宝卖家保证金怎么交 编辑:程序博客网 时间:2024/05/17 01:01

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{   

 

 //NSObject的方法创建一个多线程  

  [self performSelectorInBackground:@selector(multiThread) withObject:nil];

   returnYES;

}

-(void)multiThread{    

  if (![NSThread isMainThread]) {            

// 1种方式        

//此种方式创建的timer已经添加至runloop

//[NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(timerAction) userInfo:nil repeats:YES];        

//保持线程为活动状态,才能保证定时器执行

//  [[NSRunLoop currentRunLoop] run];//已经将nstimer添加到NSRunloop中了                

//2种方式        

//此种方式创建的timer没有添加至runloop       

NSTimer *timer = [NSTimer timerWithTimeInterval:1.0f target:self selector:@selector(timerAction) userInfo:nil repeats:YES];        

//将定时器添加到runloop        

[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSDefaultRunLoopMode];        

[[NSRunLoop currentRunLoop] run];        

NSLog(@"多线程结束");    

}  

}

- (void)timerAction{  

  //定时器也是在子线程中执行的   

 if (![NSThread isMainThread])

 {       

 NSLog(@"定时器");    

  }

}


0 0
原创粉丝点击