NSNotificationCenter addObserverForName

addObserverForName这个方法并不常用, 但估计很多人和我一样, 最开始的时候也不太了解这个方法, 再看了网上的一些技术贴, 更是对addObserverForName产生了误解.

应用场景

当通知的发出不在主线程, 但是发出的通知需要更新UI, 就可能会用到这个方法.

- (id <NSObject>)addObserverForName:(nullable NSNotificationName)name 
                             object:(nullable id)obj 
                              queue:(nullable NSOperationQueue *)queue
                         usingBlock:(void (^)(NSNotification *note))block NS_AVAILABLE(10_6, 4_0);
    // The return value is retained by the system, and should be held onto by the caller in
    // order to remove the observer with removeObserver: later, to stop observation.

这里我把苹果爸爸的注释也copy上了, 意思, 是使用者要持有addObserverForName的返回值, 也就是持有这个observer, 后面需要通过removeObserver来停止监听. 但实际使用中, 我们会发现, addObserverForName并不需要caller去持有这个observer, 只需要在block中使用weak, 系统就会在dealloc中帮我们去remove这个observer.

没想到几年前的一篇学习心得会给大家造成这么大的困扰,在此表示表示歉意,上面的这种说法是不严谨的,不是因为我们使用了weak系统才帮我们去remove,而且从iOS9开始,当对象dealloc的时候,系统会帮我执行removeObserver, 所以这里使用weak是为了不让block对self产生强引用,进而产生循环引用,即系统(NSNotification内部持有block),block持有self,self不释放,系统block也不会触发释放

由于有人质疑此文是拿来主义,为此本人还亲自重新做了实验,与当时的结果还是一样的,这里把实验的细节也放上来,也是当时做实验的一些心路历程。

实验1:block中使用self, 在不适用后进行移除
结论1:没有用, self没法释放, dealloc不会执行, 但观察者可以成功移除,beginLuckyDogs 只会执行一次
- (void)dealloc
{
    NSLog(@"begin dealloc");
    [[NSNotificationCenter defaultCenter] removeObserver:self.observer name:@"luckyDogNotification" object:nil];
}

- (void)beginLuckyDogs {
    NSLog(@"beginLuckyDogs=========");
}

- (void)viewDidLoad {
    [super viewDidLoad];

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [[NSNotificationCenter defaultCenter] postNotificationName:@"luckyDogNotification" object:nil];
    });
    
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(6 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        NSLog(@"luckyDogNotification");
        [[NSNotificationCenter defaultCenter] removeObserver:self.observer name:@"luckyDogNotification" object:nil];
    });
    
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(9 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [[NSNotificationCenter defaultCenter] postNotificationName:@"luckyDogNotification" object:nil];
        });
    self.observer = [[NSNotificationCenter defaultCenter] addObserverForName:@"luckyDogNotification"
                                                      object:nil
                                                       queue:[NSOperationQueue mainQueue]
                                                  usingBlock:^(NSNotification *note) {
                                                      [self beginLuckyDogs];
                                                  }];
}
实验2:同实验1,只是在移除观察的时候用[[NSNotificationCenter defaultCenter] removeObserver:self];
结论2:没有用,观察无法移除成功,self无法释放
- (void)dealloc
{
    NSLog(@"begin dealloc");
    [[NSNotificationCenter defaultCenter] removeObserver:self.observer name:@"luckyDogNotification" object:nil];
}


- (void)beginLuckyDogs {
    NSLog(@"beginLuckyDogs=========");
}


- (void)viewDidLoad {
    [super viewDidLoad];

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [[NSNotificationCenter defaultCenter] postNotificationName:@"luckyDogNotification" object:nil];
    });
    
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(6 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        NSLog(@"luckyDogNotification");
        [[NSNotificationCenter defaultCenter] removeObserver:self];
    });
    
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(12 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [[NSNotificationCenter defaultCenter] postNotificationName:@"luckyDogNotification" object:nil];
        });
    [[NSNotificationCenter defaultCenter] addObserverForName:@"luckyDogNotification"
                                                      object:nil
                                                       queue:[NSOperationQueue mainQueue]
                                                  usingBlock:^(NSNotification *note) {
                                                      [self beginLuckyDogs];
                                                  }];
实验3:类似实验2,只是block中使用weak
结论3:self可以释放,但观察者[[NSNotificationCenter defaultCenter] removeObserver:self];不能正常移除成功,beginLuckyDogs会执行多次

- (void)dealloc
{
    NSLog(@"begin dealloc");
    [[NSNotificationCenter defaultCenter] removeObserver:self.observer name:@"luckyDogNotification" object:nil];
}

- (void)beginLuckyDogs {
    NSLog(@"beginLuckyDogs=========");
}

- (void)viewDidLoad {
    [super viewDidLoad];

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [[NSNotificationCenter defaultCenter] postNotificationName:@"luckyDogNotification" object:nil];
    });
    
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(6 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        NSLog(@"luckyDogNotification");
        [[NSNotificationCenter defaultCenter] removeObserver:self];
    });
    
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(12 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [[NSNotificationCenter defaultCenter] postNotificationName:@"luckyDogNotification" object:nil];
        });
    
    __weak typeof(self) weak_self = self;
    [[NSNotificationCenter defaultCenter] addObserverForName:@"luckyDogNotification"
                                                      object:nil
                                                       queue:[NSOperationQueue mainQueue]
                                                  usingBlock:^(NSNotification *note) {
                                                      [weak_self beginLuckyDogs];
                                                  }];
}
实验4:block中使用weak, 不显式调用remove操作
结论4:self可以正常释放,不会多次执行beginLuckyDogs
- (void)dealloc
{
    NSLog(@"begin dealloc");
}

- (void)beginLuckyDogs {
    NSLog(@"beginLuckyDogs=========");
}

- (void)viewDidLoad {
    [super viewDidLoad];

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [[NSNotificationCenter defaultCenter] postNotificationName:@"luckyDogNotification" object:nil];
    });
    
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(9 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [[NSNotificationCenter defaultCenter] postNotificationName:@"luckyDogNotification" object:nil];
    });

    __weak typeof(self) weak_self = self;
    [[NSNotificationCenter defaultCenter] addObserverForName:@"luckyDogNotification"
                                                      object:nil
                                                       queue:[NSOperationQueue mainQueue]
                                                  usingBlock:^(NSNotification *note) {
                                                      [weak_self beginLuckyDogs];
                                                  }];
}

由于之前的文章,少了一些中间的心路历程,造成了大家的误解,评论区有说学艺不精误人子弟的都欣然接受。

有些同学可能并不知道系统会帮我们remove这个情况, 还是会在dealloc中去无脑调用一次[[NSNotificationCenter defaultCenter] removeObserver:self]; 但是我们应该知道[[NSNotificationCenter defaultCenter] removeObserver:self];应该是用于普通的addObserver的移除的.

上面这段描述也不够准确,针对iOS9系统才会不移自除,对于非iOS9,还是要用- (void)removeObserver:(id)observer name:(nullable NSNotificationName)aName object:(nullable id)anObject;进行移除,[[NSNotificationCenter defaultCenter] removeObserver:self]; 无法移除- (id <NSObject>)addObserverForName:(nullable NSNotificationName)name object:(nullable id)obj queue:(nullable NSOperationQueue *)queue usingBlock:(void (^)(NSNotification *note))block API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0)); 方式添加的观察者

从iOS9以后,确实在对下释放的时候系统会帮我们进行remove操作,本文的核心意思主要是针对

- (id <NSObject>)addObserverForName:(nullable NSNotificationName)name 
                             object:(nullable id)obj 
                              queue:(nullable NSOperationQueue *)queue
                         usingBlock:(void (^)(NSNotification *note))block NS_AVAILABLE(10_6, 4_0);
    // The return value is retained by the system, and should be held onto by the caller in
    // order to remove the observer with removeObserver: later, to stop observation.

这段代码中,苹果的这个注释展开,并结合使用中出现强引用问题造成对象无法释放问题的调查。

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

推荐阅读更多精彩内容