NSTimer使用

一、介绍

NSTimer.h文件里的一些方法、属性的讲解

1、NSInvocation创建

+ (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti invocation:(NSInvocation *)invocation repeats:(BOOL)yesOrNo;
+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti invocation:(NSInvocation *)invocation repeats:(BOOL)yesOrNo;

需要一个NSInvocation对象创建。前者创建一个定时器,但是需要在创建定时器后手动将timer加入NSRunLoop 中;后者自动以NSDefaultRunLoopMode添加到当前线程RunLoop中。

例子:

- (void)setupTimer{
    SEL sel = @selector(run);
    NSMethodSignature *sign = [[self class] instanceMethodSignatureForSelector:sel];
    NSInvocation *invo = [NSInvocation invocationWithMethodSignature:sign];
    invo.target = self;
    invo.selector = sel;
    [invo invoke];
    
    NSTimer *timer = [NSTimer timerWithTimeInterval:1 invocation:invo repeats:YES];
    // NSRunLoopCommonModes NSDefaultRunLoopMode
    [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSDefaultRunLoopMode];
    
    
}

- (void)run{
    NSLog(@"run");
}

2、指定target和selector

+ (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(nullable id)userInfo repeats:(BOOL)yesOrNo;
+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(nullable id)userInfo repeats:(BOOL)yesOrNo;

这两个是常用的创建方式,区别同上

3、block

+ (NSTimer *)timerWithTimeInterval:(NSTimeInterval)interval repeats:(BOOL)repeats block:(void (^)(NSTimer *timer))block ;
+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)interval repeats:(BOOL)repeats block:(void (^)(NSTimer *timer))block;

block创建方式,区别同上

4、实例方法

- (instancetype)initWithFireDate:(NSDate *)date interval:(NSTimeInterval)interval repeats:(BOOL)repeats block:(void (^)(NSTimer *timer))block ;
- (instancetype)initWithFireDate:(NSDate *)date interval:(NSTimeInterval)ti target:(id)t selector:(SEL)s userInfo:(nullable id)ui repeats:(BOOL)rep ;

实例方法创建方式,区别同上

// 执行(不加入runloop,用fire执行一次)
- (void)fire;

@property (copy) NSDate *fireDate;
@property (readonly) NSTimeInterval timeInterval;

// 容差  
@property NSTimeInterval tolerance API_AVAILABLE(macos(10.9), ios(7.0), watchos(2.0), tvos(9.0));
// 停止定时器再次触发并请求将其从runloop中移除
- (void)invalidate;
@property (readonly, getter=isValid) BOOL valid;

@property (nullable, readonly, retain) id userInfo;

二、实例

1、子线程开启定时器

@interface BViewController ()

@property (nonatomic,strong) NSTimer *timer;
@property (nonatomic,strong) NSThread *thread;

@end

@implementation BViewController

- (void)dealloc{
    NSLog(@"注销");
}

- (void)viewDidLoad {
    [super viewDidLoad];
    NSLog(@"%@ %@",[NSThread currentThread],[NSRunLoop currentRunLoop]);
    self.thread = [[NSThread alloc] initWithTarget:self selector:@selector(perTask) object:nil];
    [self.thread start];
    
}

- (void)perTask{
    NSLog(@"%@ %@",[NSThread currentThread],[NSRunLoop currentRunLoop]);
    self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(run) userInfo:nil repeats:YES];
    // 子线程runloop是默认不运行,必须手动开启
    [[NSRunLoop currentRunLoop] run];
}

- (void)run{
    NSLog(@"run里的线程%@",[NSThread currentThread]);
    if ([NSThread currentThread].isCancelled) {
        [self.timer invalidate];
    }
    NSLog(@"run");
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    [self.thread cancel];
//    if (self.thread.isCancelled) {
//        [self.timer invalidate];
//    }
    NSLog(@"touch的线程%@",[NSThread currentThread]);
    
}

这个例子有几个注意点:
1、子线程runloop默认不运行,必须手动run
2、invalidate:文档上有一段说明

必须从定时器当前线程发送invalidate。 如果从另一个线程发送此消息,则与定时器关联的输入源可能不会从其runloop中删除,这可能会阻止线程正常退出。

所以销毁timer必须在子线程中即run方法里

2、循环问题
这个NStimer经典问题:当前VC持有timer,timer的target又是self(VC),从而产生循环引用。

怎么解决?

一般是按实例1中的方法,在退出VC前invalidate掉timer,但是往往我们会遗漏或者某些场景不好操作。如何优雅的解决循环引用呢?

把timer的target设为自己,这样就不会循环引用。我们用一个Category封装一下:

+ (NSTimer *)ca_scheduledTimerWithTimeInterval:(NSTimeInterval)interval
                                       repeats:(BOOL)repeats
                                         block:(void(^)(void))block{
    return [self scheduledTimerWithTimeInterval:interval target:self selector:@selector(ca_blockInvoke:) userInfo:[block copy] repeats:repeats];
}

+ (void)ca_blockInvoke:(NSTimer *)timer{
    void (^block)(void) = timer.userInfo;
    if(block) {
        block();
    }
}

这样的话,timer事件在block中执行。

注:
1、NSTimer不是一种实时机制,这点官网文档上作了说明

A timer is not a real-time mechanism. If a timer’s firing time occurs during a long run loop callout or while the run loop is in a mode that isn't monitoring the timer, the timer doesn't fire until the next time the run loop checks the timer. Therefore, the actual time at which a timer fires can be significantly later.

2、当然了,想让NSTimer在scrollView滚动时有效需要将runloop mode换成NSRunLoopCommonModes(默认mode是NSDefaultRunLoopMode,scrollView滚动时mode切换成UITrackingRunLoopMode,所以NSTimer失效)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349

推荐阅读更多精彩内容