`
啸笑天
  • 浏览: 3465626 次
  • 性别: Icon_minigender_1
  • 来自: China
社区版块
存档分类
最新评论

NSNotification tips

    博客分类:
  • ios
 
阅读更多

官方文档:

https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Notifications/Introduction/introNotifications.html#//apple_ref/doc/uid/10000043-SW1

 

 

1、NSNotification消息的同步性

 

①NSNotification使用的是同步操作。即如果你在程序中的A位置post了一个NSNotification,在B位置注册了一个observer,通知发出后,必须等到B位置的通知回调执行完以后才能返回到A处继续往下执行。

 

因此,不要过多的或者低效的使用NSNotification,《Cocoa基本原理指南》一文推荐的方式是通过一些“中间的”观察者将通告的结果传递给它们可以访问的对象。

 

②如果想让NSNotification的post处和observer处异步执行,可以通过NSNotificationQueue实现。

 

2、多个观察者的执行顺序

 

对于同一个通知,如果注册了多个观察者,则这多个观察者的执行顺序和他们的注册顺序是保持一致的。

 

 

 

3、NSNotification通知转发线程

 

①NSNotificationCenter在转发NSNotification消息的时候,在哪个线程中post,就在哪个线程中转发。换句话说,不管你的observer是在哪个线程,observer的回调方法执行线程都和post的线程保持一致。

 

②如果想让post的线程和转发的线程不同,可以通过NSNotification重定向技术实现。

 

 

4、addObserver和removeObserver必须成对出现

 

官方文档中是这样描述的:

 

The notification center does not retain its observers, therefore, you must ensure that you unregister observers (usingremoveObserver: or removeObserver:name:object:) before they are deallocated. (If you don’t, you will generate a runtime error if the center sends a message to a freed object.)

再addObserver的时候,notification center并不增加观察者对象的引用计数,因此,在观察者对象被释放之前我们必须保证它们被从观察队列中移除,否则后果很明显!

 

 

5、Notification与多线程

前几天与同事讨论到Notification在多线程下的转发问题,所以就此整理一下。

先来看看官方的文档,是这样写的:

In a multithreaded application, notifications are always delivered in the thread in which the notification was posted, which may not be the same thread in which an observer registered itself.

翻译过来是:

在多线程应用中,Notification在哪个线程中post,就在哪个线程中被转发,而不一定是在注册观察者的那个线程中。

也就是说,Notification的发送与接收处理都是在同一个线程中。为了说明这一点,我们先来看一个示例:

代码清单1:Notification的发送与处理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@implementation ViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
 
    NSLog(@"current thread = %@", [NSThread currentThread]);
 
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:TEST_NOTIFICATION object:nil];
 
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
 
        [[NSNotificationCenter defaultCenter] postNotificationName:TEST_NOTIFICATION object:nil userInfo:nil];
    });
}
 
- (void)handleNotification:(NSNotification *)notification
{
    NSLog(@"current thread = %@", [NSThread currentThread]);
 
    NSLog(@"test notification");
}
 
@end

其输出结果如下:

1
2
3
2015-03-11 22:05:12.856 test[865:45102] current thread = {number = 1, name = main}
2015-03-11 22:05:12.857 test[865:45174] current thread = {number = 2, name = (null)}
2015-03-11 22:05:12.857 test[865:45174] test notification

可以看到,虽然我们在主线程中注册了通知的观察者,但在全局队列中post的Notification,并不是在主线程处理的。所以,这时候就需要注意,如果我们想在回调中处理与UI相关的操作,需要确保是在主线程中执行回调。

这时,就有一个问题了,如果我们的Notification是在二级线程中post的,如何能在主线程中对这个Notification进行处理呢?或者换个提法,如果我们希望一个Notification的post线程与转发线程不是同一个线程,应该怎么办呢?我们看看官方文档是怎么说的:

For example, if an object running in a background thread is listening for notifications from the user interface, such as a window closing, you would like to receive the notifications in the background thread instead of the main thread. In these cases, you must capture the notifications as they are delivered on the default thread and redirect them to the appropriate thread.

这里讲到了“重定向”,就是我们在Notification所在的默认线程中捕获这些分发的通知,然后将其重定向到指定的线程中。

一种重定向的实现思路是自定义一个通知队列(注意,不是NSNotificationQueue对象,而是一个数组),让这个队列去维护那些我们需要重定向的Notification。我们仍然是像平常一样去注册一个通知的观察者,当Notification来了时,先看看post这个Notification的线程是不是我们所期望的线程,如果不是,则将这个Notification存储到我们的队列中,并发送一个信号(signal)到期望的线程中,来告诉这个线程需要处理一个Notification。指定的线程在收到信号后,将Notification从队列中移除,并进行处理。

官方文档已经给出了示例代码,在此借用一下,以测试实际结果:

代码清单2:在不同线程中post和转发一个Notification

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@interface ViewController () @property (nonatomic) NSMutableArray    *notifications;         // 通知队列
@property (nonatomic) NSThread          *notificationThread;    // 期望线程
@property (nonatomic) NSLock            *notificationLock;      // 用于对通知队列加锁的锁对象,避免线程冲突
@property (nonatomic) NSMachPort        *notificationPort;      // 用于向期望线程发送信号的通信端口
 
@end
 
@implementation ViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
 
    NSLog(@"current thread = %@", [NSThread currentThread]);
 
    // 初始化
    self.notifications = [[NSMutableArray alloc] init];
    self.notificationLock = [[NSLock alloc] init];
 
    self.notificationThread = [NSThread currentThread];
    self.notificationPort = [[NSMachPort alloc] init];
    self.notificationPort.delegate = self;
 
    // 往当前线程的run loop添加端口源
    // 当Mach消息到达而接收线程的run loop没有运行时,则内核会保存这条消息,直到下一次进入run loop
    [[NSRunLoop currentRunLoop] addPort:self.notificationPort
                                forMode:(__bridge NSString *)kCFRunLoopCommonModes];
 
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(processNotification:) name:@"TestNotification" object:nil];
 
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
 
        [[NSNotificationCenter defaultCenter] postNotificationName:TEST_NOTIFICATION object:nil userInfo:nil];
 
    });
}
 
- (void)handleMachMessage:(void *)msg {
 
    [self.notificationLock lock];
 
    while ([self.notifications count]) {
        NSNotification *notification = [self.notifications objectAtIndex:0];
        [self.notifications removeObjectAtIndex:0];
        [self.notificationLock unlock];
        [self processNotification:notification];
        [self.notificationLock lock];
    };
 
    [self.notificationLock unlock];
}
 
- (void)processNotification:(NSNotification *)notification {
 
    if ([NSThread currentThread] != _notificationThread) {
        // Forward the notification to the correct thread.
        [self.notificationLock lock];
        [self.notifications addObject:notification];
        [self.notificationLock unlock];
        [self.notificationPort sendBeforeDate:[NSDate date]
                                   components:nil
                                         from:nil
                                     reserved:0];
    }
    else {
        // Process the notification here;
        NSLog(@"current thread = %@", [NSThread currentThread]);
        NSLog(@"process notification");
    }
}
 
@end

运行后,其输出如下:

1
2
3
2015-03-11 23:38:31.637 test[1474:92483] current thread = {number = 1, name = main}
2015-03-11 23:38:31.663 test[1474:92483] current thread = {number = 1, name = main}
2015-03-11 23:38:31.663 test[1474:92483] process notification

可以看到,我们在全局dispatch队列中抛出的Notification,如愿地在主线程中接收到了。

这种实现方式的具体解析及其局限性大家可以参考官方文档Delivering Notifications To Particular Threads,在此不多做解释。当然,更好的方法可能是我们自己去子类化一个NSNotificationCenter,或者单独写一个类来处理这种转发。

NSNotificationCenter的线程安全性

苹果之所以采取通知中心在同一个线程中post和转发同一消息这一策略,应该是出于线程安全的角度来考量的。官方文档告诉我们,NSNotificationCenter是一个线程安全类,我们可以在多线程环境下使用同一个NSNotificationCenter对象而不需要加锁。原文在Threading Programming Guide中,具体如下:

1
2
3
4
5
6
7
The following classes and functions are generally considered to be thread-safe. You can use the same instance from multiple threads without first acquiring a lock.
 
NSArray
...
NSNotification
NSNotificationCenter
...

我们可以在任何线程中添加/删除通知的观察者,也可以在任何线程中post一个通知。

NSNotificationCenter在线程安全性方面已经做了不少工作了,那是否意味着我们可以高枕无忧了呢?再回过头来看看第一个例子,我们稍微改造一下,一点一点来:

代码清单3:NSNotificationCenter的通用模式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@interface Observer : NSObject
 
@end
 
@implementation Observer
 
- (instancetype)init
{
    self = [super init];
 
    if (self)
    {
        _poster = [[Poster alloc] init];
 
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:TEST_NOTIFICATION object:nil]
    }
 
    return self;
}
 
- (void)handleNotification:(NSNotification *)notification
{
    NSLog(@"handle notification ");
}
 
- (void)dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
 
@end
 
// 其它地方
[[NSNotificationCenter defaultCenter] postNotificationName:TEST_NOTIFICATION object:nil];

上面的代码就是我们通常所做的事情:添加一个通知监听者,定义一个回调,并在所属对象释放时移除监听者;然后在程序的某个地方post一个通知。简单明了,如果这一切都是发生在一个线程里面,或者至少dealloc方法是在-postNotificationName:的线程中运行的(注意:NSNotification的post和转发是同步的),那么都OK,没有线程安全问题。但如果dealloc方法和-postNotificationName:方法不在同一个线程中运行时,会出现什么问题呢?

我们再改造一下上面的代码:

代码清单4:NSNotificationCenter引发的线程安全问题

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#pragma mark - Poster
 
@interface Poster : NSObject
 
@end
 
@implementation Poster
 
- (instancetype)init
{
    self = [super init];
 
    if (self)
    {
        [self performSelectorInBackground:@selector(postNotification) withObject:nil];
    }
 
    return self;
}
 
- (void)postNotification
{
    [[NSNotificationCenter defaultCenter] postNotificationName:TEST_NOTIFICATION object:nil];
}
 
@end
 
#pragma mark - Observer
 
@interface Observer : NSObject
{
    Poster  *_poster;
}
 
@property (nonatomic, assign) NSInteger i;
 
@end
 
@implementation Observer
 
- (instancetype)init
{
    self = [super init];
 
    if (self)
    {
        _poster = [[Poster alloc] init];
 
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:TEST_NOTIFICATION object:nil];
    }
 
    return self;
}
 
- (void)handleNotification:(NSNotification *)notification
{
    NSLog(@"handle notification begin");
    sleep(1);
    NSLog(@"handle notification end");
 
    self.i = 10;
}
 
- (void)dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
 
    NSLog(@"Observer dealloc");
}
 
@end
 
#pragma mark - ViewController
 
@implementation ViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
 
    __autoreleasing Observer *observer = [[Observer alloc] init];
}
 
@end

这段代码是在主线程添加了一个TEST_NOTIFICATION通知的监听者,并在主线程中将其移除,而我们的NSNotification是在后台线程中post的。在通知处理函数中,我们让回调所在的线程睡眠1秒钟,然后再去设置属性i值。这时会发生什么呢?我们先来看看输出结果:

1
2
3
4
5
6
2015-03-14 00:31:41.286 SKTest[932:88791] handle notification begin
2015-03-14 00:31:41.291 SKTest[932:88713] Observer dealloc
2015-03-14 00:31:42.361 SKTest[932:88791] handle notification end
(lldb) 
 
// 程序在self.i = 10处抛出了"Thread 6: EXC_BAD_ACCESS(code=EXC_I386_GPFLT)"

经典的内存错误,程序崩溃了。其实从输出结果中,我们就可以看到到底是发生了什么事。我们简要描述一下:

  1. 当我们注册一个观察者是,通知中心会持有观察者的一个弱引用,来确保观察者是可用的。

  2. 主线程调用dealloc操作会让Observer对象的引用计数减为0,这时对象会被释放掉。

  3. 后台线程发送一个通知,如果此时Observer还未被释放,则会用其转出消息,并执行回调方法。而如果在回调执行的过程中对象被释放了,就会出现上面的问题。

当然,上面这个例子是故意而为之,但不排除在实际编码中会遇到类似的问题。虽然NSNotificationCenter是线程安全的,但并不意味着我们在使用时就可以保证线程安全的,如果稍不注意,还是会出现线程问题。

那我们该怎么做呢?这里有一些好的建议:

  1. 尽量在一个线程中处理通知相关的操作,大部分情况下,这样做都能确保通知的正常工作。不过,我们无法确定到底会在哪个线程中调用dealloc方法,所以这一点还是比较困难。

  2. 注册监听都时,使用基于block的API。这样我们在block还要继续调用self的属性或方法,就可以通过weak-strong的方式来处理。具体大家可以改造下上面的代码试试是什么效果。

  3. 使用带有安全生命周期的对象,这一点对象单例对象来说再合适不过了,在应用的整个生命周期都不会被释放。

  4. 使用代理。

小结

NSNotificationCenter虽然是线程安全的,但不要被这个事实所误导。在涉及到多线程时,我们还是需要多加小心,避免出现上面的线程问题。想进一步了解的话,可以查看Observers and Thread Safety

 

 参考

  1. Notification Programming Topics

  2. Threading Programming Guide

  3. NSNotification的几点说明

  4. NSNotificationCenter is thread-safe NOT

  5. Observers and Thread Safety

thx:http://www.cocoachina.com/ios/20150316/11335.html

http://blog.csdn.net/wzzvictory/article/details/8489516 

 

 

 

 

 

 

 

 

分享到:
评论

相关推荐

    delegate、NSNotification、block比较

    在iOS和macOS开发中,`delegate`、`NSNotification`和`block`是三种常见的对象间通信机制。它们各自有着不同的特性和应用场景,理解这些差异对于优化代码结构和提高程序性能至关重要。 首先,我们来看看`delegate`...

    iOS开发之通知NSNotificationDemo

    在iOS开发中,NSNotification是Objective-C中的一个关键概念,它属于Foundation框架,用于对象间通信。NSNotification机制允许对象广播消息给其他对象,而无需这些对象之间有直接的引用关系,这种设计模式被称为发布...

    IOS NSNotification 键盘遮挡问题的解决办法

    为了解决这个问题,我们可以利用NSNotification来监听键盘的显示和隐藏,从而调整界面布局,确保内容始终可见。本文将详细介绍如何通过NSNotification解决iOS中的键盘遮挡问题。 首先,我们需要了解键盘的通知类型...

    快速,强类型,易使用的消息总线,兼容NSNotification.zip

    QTEventBus是一个开源项目,设计目标是为iOS应用提供一个快速、强类型且易于使用的消息总线,同时兼容苹果的NSNotification机制。消息总线是一种设计模式,它允许应用程序中的组件之间进行松散耦合的通信,而无需...

    iOS 中KVC、KVO、NSNotification、delegate 总结及区别

    iOS开发中,KVC(Key-Value Coding)、KVO(Key-Value Observing)、NSNotification和Delegate是四种常见的数据通信和状态监听技术。下面将详细解释这些概念及其区别。 1. KVC(Key-Value Coding) KVC是Objective-...

    NSNotificationCenter详解

    NSNotification是iOS开发中一个至关重要的概念,它是Apple的Foundation框架的一部分,用于在应用程序的不同组件之间进行松耦合的通信。NSNotification允许对象发送消息(被称为通知)到其他对象,而无需直接知道接收...

    ObserverKit:一个使用 UIControl、NSNotification、Key Value Observing 的简单库。

    一个简单的库,用于使用 UIControl、NSNotification、Key Value Observing... ##Install with CocoaPod pod 'ObserverKit' 和 #import "OKObserver.h" #import "NSObject+OKObserver.h" // Optional ##例子 ...

    SRGModelEvent:SRGModelEvent 是 NSNotification 的瘦包装库,可以更轻松地观察您的模型

    SRGModelEvent 是 NSNotification 的瘦包装库,可以更轻松地观察/通知您的模型。 安装 将以下行添加到您的 podfile 并运行pod update 。 pod 'SRGModelEvent' 用法 首先你需要包含头文件。 # import " ...

    iOS NSNotificationCenter通知中心使用小结

    iOS中的NSNotification中心是一个重要的通信机制,它允许对象间进行松耦合的消息传递。NSNotification与Delegate都是iOS中常见的消息传递方式,它们各有特点和适用场景。 首先,我们来看看NSNotification和Delegate...

    iPhone编程的通知例子

    本示例项目“iPhone编程的通知例子”旨在讲解如何利用NSNotification机制和Delegate模式来实现这种通信。这两种方法都是Objective-C语言中核心的特性,对于理解和创建功能丰富的iOS应用程序至关重要。 首先,我们来...

    ios-对NSNotificationCenter的封装.zip

    在iOS开发中,NSNotification是Objective-C中的一个关键概念,它用于在对象之间进行解耦通信。这个`ios-对NSNotificationCenter的封装.zip`文件提供了一个针对NSNotification的封装,目的是简化使用过程,增强代码的...

    ios-NotificationHelper.zip

    在iOS开发中,NSNotification是Objective-C中的一个关键组件,它用于在对象之间传递消息,无需直接耦合。NotificationHelper是对NSNotification中心的封装,旨在简化通知的注册、发布和取消订阅流程,同时也解决了...

    注册通知中心实现视图间数据传递

    苹果提供了多种方式来实现这一目标,其中包括代理、KVO(Key-Value Observing)、Block以及NSNotification。本教程将重点讨论如何使用NSNotification来实现在不同视图间的数据传递,作为博客中介绍的四种方法的补充...

    AutoRemoveObserverDemo:自动删除NSNotificationCenter观察器的演示

    自动释放NSNotification的Observer的实验 实验了几种做法,其中二和三可以实现, 但仅粗略验证, 可能有未知的问题. ####一、@妙玄 提供思路:外层包装一个Wrapper对象来感知Observer的释放,通过Wrapper对象来移除通知....

    IOS中KVC和KVO用法demo

    在iOS开发中,Key Value Coding (KVC) 和 Key Value Observing (KVO) 是两种强大的数据处理技术,它们提供了一种间接访问对象属性的方法,以及动态监控属性变化的能力。 KVC,全称Key Value Coding,是Objective-C...

    osx-brightness:在OS X中获取或设置屏幕亮度

    osx-亮度在OS X中获取或设置屏幕亮度安装$ npm install --save osx-brightness用法const osxBrightness = require ( 'osx-brightness' ) ;osxBrightness . set ( 0.75 ) . then ( ( ) => {console ....

    GZNotificationCenter:CFNotificationCenter 通过桥接到 NSNotificationCenter 的封装实现

    广州通知中心 该库允许您以最简单的方式使用 CFNotificationCenter(通过 Core Foundation)。 您可以通过“addObserver”和“postNotification”调用它来执行任务。

Global site tag (gtag.js) - Google Analytics