我是靠谱客的博主 敏感楼房,最近开发中收集的这篇文章主要介绍关于重复注册通知的问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

iOS中通过通知中心可以实现发送与接收通知的效果,其中若多次发送同一通知,对方就会多次响应,但如果多次注册通知,也会有多次响应的效果,这里容易比较隐形的bug。

多次发送:

//发送通知方
    //self 发送通知
    [[
NSNotificationCenter defaultCenter ] postNotificationName : @"justTest" object : nil ];
    [[
NSNotificationCenter defaultCenter ] postNotificationName : @"justTest" object : nil ];
    [[NSNotificationCenter defaultCenter] postNotificationName:@"justTest" object:nil];

//接收通知方
- ( void ) resignNotification{
    [[
NSNotificationCenter defaultCenter ] addObserverForName : @"justTest" object : nil queue : nil
                                                 
usingBlock :^( NSNotification *note) {
                                                     
NSLog ( @"luozhiwei" );
                                                  }];
}
结果:
2015-07-25 16:15:46.491 multipleRegistrationNotification[5233:171998] luozhiwei
2015-07-25 16:15:46.491 multipleRegistrationNotification[5233:171998] luozhiwei
2015-07-25 16:15:46.491 multipleRegistrationNotification[5233:171998] luozhiwei

多次接收:

//发送通知方
[[ NSNotificationCenter defaultCenter ] postNotificationName : @"justTest" object : nil ];

//接收通知方
- ( void ) resignNotification{
    [[
NSNotificationCenter defaultCenter ] addObserverForName : @"justTest" object : nil queue : nil
                                                 
usingBlock :^( NSNotification *note) {
                                                     
NSLog ( @"luozhiwei" );
                                                  }];

    [[ NSNotificationCenter defaultCenter ] addObserverForName : @"justTest" object : nil queue : nil
                                                 
usingBlock :^( NSNotification *note) {
                                                     
NSLog ( @"luozhiwei" );
                                                  }];


    [[ NSNotificationCenter defaultCenter ] addObserverForName : @"justTest" object : nil queue : nil
                                                 
usingBlock :^( NSNotification *note) {
                                                     
NSLog ( @"luozhiwei" );
                                                  }];
}


结果:
2015-07-25 16:15:46.491 multipleRegistrationNotification[5233:171998] luozhiwei
2015-07-25 16:15:46.491 multipleRegistrationNotification[5233:171998] luozhiwei
2015-07-25 16:15:46.491 multipleRegistrationNotification[5233:171998] luozhiwei



结论:为了避免因此重复注册而造成错误,建议每次注册一个通知之前,可以先注销一次该通知。

最后

以上就是敏感楼房为你收集整理的关于重复注册通知的问题的全部内容,希望文章能够帮你解决关于重复注册通知的问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(137)

评论列表共有 0 条评论

立即
投稿
返回
顶部