NSTimer的理解

NSTimer的定义

A timer that fires after a certain time interval has elapsed, sending a specified message to a target object.
简单理解就是在一定的时间间隔后向指定对象发送指定消息。

NSTimer的调用方式

一、自动加入NSRunLoop

方法名以scheduled开头的均不需要手动加入NSRunLoop
方法有三个:

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

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

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

二、需要手动加入NSRunLoop

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

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

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

重点参数解析

参数:target

The object to which to send the message specified by aSelector when the timer fires. 
The timer maintains a strong reference to this object until it (the timer) is invalidated.

当timer开启时,消息的reciver。NSTimer会强引用target直到(the timer) invalidated.

参数:userInfo

Custom user info for the timer.

The timer maintains a strong reference to this object until it (the timer) is invalidated. This parameter may be nil.

自定义的额外数据。和target一样,NSTimer会强引用userInfo直到(the timer) invalidated.

参数:repeats

If YES, the timer will repeatedly reschedule itself until invalidated. If NO, the timer will be invalidated after it fires.

repeats为YES时,会重复执行selector方法直到timer invalidated为止。
repeats为NO时, timer会在fires后被置为invalidated。
注意:以上说明,repeats为YES时,要想截止timer,需要调用[timer invalidate]方法,而repeats为NO时,系统自动在fires后调用[timer invalidate]方法。

- (void)invalidate;

Stops the timer from ever firing again and requests its removal from its run loop.

停止timer,并请求从其运行循环中删除它。

This method is the only way to remove a timer from an [NSRunLoop
](apple-reference-documentation://hclPs8uY7g) object. The NSRunLoop
 object removes its strong reference to the timer, either just before the [invalidate
](apple-reference-documentation://hcnIKt1Jb9) method returns or at some later point.
If it was configured with target and user info objects, the receiver removes its strong references to those objects as well.

该方法是从NSRunLoop对象中删除timer的唯一方法。 NSRunLoop对象删除其对定时器的强引用,就在invalidate方法返回之前或稍后一点。
如果配置了target和userInfo对象,timer也会删除其对这些对象的强引用。

常说的循环引用

1, self强引用timer对象。

即如下方式:

self.timer = [NSTimer timerWithTimeInterval:1.0 target:self selector:@selector(timerSelector) userInfo:nil repeats:YES];

对象引用图:

6B6B7362-DC06-41AE-AA1C-BF9ABCDD28AF.png

执行了invalidate方法后:timer--->target, runloop--->timer 之间的强引用被删除。也就不会再有循环引用了。(当repeats参数为NO时,timer 触发后,这两个强引用就自动被删除了)。

CA10278D-CD87-4C75-BC3C-280AE3403CE8.png

所以如果repeats为YES,并且没有执行invalidate方法时,形成了循环引用,这样self就无法释放,从而内存泄漏。(有同学在self的dealloc方法中进行[timer invalidate]调用是无效果的,因为dealloc方法根本不会执行。)

2,self没有强引用timer的情况
F165D713-F6FE-4DF1-A07A-48AF181C450B.png

执行了invalidate方法后:timer--->target, runloop--->timer 之间的强引用被删除。也就不会再有循环引用了。(当repeats参数为NO时,timer 触发后,这两个强引用就自动被删除了)。

FA9FD847-7BC4-41EB-9355-F29FC09B931B.png

所以如果repeats为YES,并且没有执行invalidate方法时,虽然没有循环引用,但是runloop强引用timer,timer强引用self(target),由于(主线程中)runloop是程序运行期永久存在的,所以timer无法释放,self(target)也就无法释放,从而内存泄漏。

系统方法中有一个方法不会导致self(target)无法释放。如下:

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

该方法没有参数targe,所以不会强引用self(target), 所以self(target)可以释放,但是如果没有调用invalidate方法, 所创建的timer也是无法释放的,所以依旧会内存泄漏。

综上所诉,当参数repeats为YES时,必须在不使用timer的时候调用invalidate方法删除相关强引用,以免内存泄漏。

避免循环引用的方式:

1,使用另一个对象,timer强引用newObjc,newObjc弱引用target。

github上已经有了代码:YYWeakProxy
对象引用图:

E606D9DA-C690-4BB7-A00D-00EFE654E8E8.png

这样timer就不再强引用self了,可以在self的dealloc中执行invalidate方法释放timer--->yyweakproxy, runloop----->timer的强引用.

原理:YYWeakProxy中weak属性target,并重写forwardingTargetForSelector方法,直接返回_target.

- (id)forwardingTargetForSelector:(SEL)selector {
    return _target;
}
2,将target设置为类对象。

对象引用图

B8EFCD0B-B320-40C4-BFB6-4F8210FCB831.png

虽然依旧有强引用:timer--->NSTimer类对象,但是由于类对象不需要回收,所以没有内存泄漏问题。
实现方式:

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

推荐阅读更多精彩内容

  • 一、什么是NSRunLoop NSRunLoop是消息机制的处理模式 NSRunLoop的作用在于有事情做的时候使...
    呦释原点阅读 650评论 0 2
  • NSTimer是iOS最常用的定时器工具之一,在使用的时候常常会遇到各种各样的问题,最常见的是内存泄漏,通常我们使...
    bomo阅读 1,172评论 0 7
  • 创建NSTimer 创建NSTimer的常用方法是: + (NSTimer *)scheduledTimerWit...
    LanWor阅读 1,355评论 0 2
  • 一、什么是NSTimer 官方给出解释是“A timer provides a way to perform a ...
    行走的菜谱阅读 1,135评论 0 4
  • 数据内容:在肿瘤测序数据中,发现血系变异与体细胞变异的叠加 数据来源:TCGA 数据理解: ①TCGA数据产生过程...
    union0402阅读 765评论 0 0