码迷,mamicode.com
首页 > 其他好文 > 详细

定时器NSTimer

时间:2015-09-15 19:43:21      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

/** 添加定时器 */
@property (nonatomic, strong) NSTimer *timer;

- (void)addTimer
{
// 2秒后,自己 调用nextImage方法 nil 一直循环这个定时器
self.timer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(nextImage) userInfo:nil repeats:YES];
// 给定时器添加优先级
[[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
}
/** 移除定时器 */
- (void)removeTimer
{ // 定时器一旦被停止,不会重新开始,要被移除。
[self.timer invalidate];
self.timer = nil;
}

定时器NSTimer

标签:

原文地址:http://www.cnblogs.com/shen5214444887/p/4811078.html

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