1.定时器: 过两秒钟 执行一件事 (找一个对象self 执行对象中指定的方法@selector:(nextImage))
NSTimer *timer = [NSTimer timerWithTimeInterval: 2.0 target: self selector:@selector:(nextImage) userInfo: nil repeats:YES ];
2.消息循环
NSRunLoop *runloop = [NSRunLoop currentRunLoop];
[runloop addTimer:timer forMode:NSDefaultRunLoopMode]; // 把定时
器加入到消息循环中
// NSDefaultRunLoopMode 默认模式 NSRunLoopCommonModes (一个人当两个人来用 )
3. 这个方法相当于 【定时器 + 消息循环】
NSTimer *timer = [NSTimer scheduledTimerWithTimeInteral:2.0 target:self selector :@selector(nextImage) userInfo:nil repeats:YES];
[timer fire ]; // 立即执行nextImage 方法
//执行main 函数的那个人 就是主线程
• NSTimer叫做“定时器”,它的作用如下
➢ 在指定的时间执行指定的任务
➢ 每隔一段时间执行指定的任务
➢
• 调用下面的方法就会开启一个定时任务
+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget
selector:(SEL)aSelector
userInfo:(id)userInfo
repeats:(BOOL)yesOrNo;
每隔ti秒,调用一次aTarget的aSelector方法,yesOrNo决定了是否重复执行这个任务
通过invalidate方法可以停止定时器的工作,一旦定时器被停止了,就不能再次执行任务。只能再创建一个新的定时器才能执行新的任务
//停止定时器
- (void)invalidate; // 使无效,无价值