如果一个类注册了某种类型的NSNotificationCenter
事件而另一个类发布了该类型的事件,那么接收器中的代码是否会在发布类继续之前(同步)或之后(异步)执行?
- (void)poster {
[[NSNotificationCenter defaultCenter]
postNotificationWithName:@"myevent"
object:nil];
NSLog(@"Hello from poster");
}
- (void)receiver {
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector:(mySelector)
name:@"myevent"
object:nil];
}
- (void) mySelector:(NSNotification *) notification {
NSLog(@"Hello from receiver");
}
在上面的代码示例中,“Hello from receiver”会在“Hello from caller”之前或之后打印吗?
答案 0 :(得分:78)
如NSNotificationCenter NSNotificationCenter Class Reference文档中所述,同步发布通知。
通知中心同步向观察者发送通知。 换句话说,postNotification:方法在所有观察者都收到并处理通知之前不会返回。要异步发送通知,请使用 NSNotificationQueue 。
在多线程应用程序中,通知始终在发布通知的线程中传递,这可能与观察者注册的线程不同。
希望它对你有所帮助。