gpt4 book ai didi

ios - NSNotification 对象的生命周期

转载 作者:行者123 更新时间:2023-11-28 18:11:11 27 4
gpt4 key购买 nike

假设我有一个快速触发的类(class)的帖子:

[[NSNotificationCenter defaultCenter] postNotificationName:kGotData object:nil userInfo:someDictionaryObject];

还有来自另一个类(class)的观察者:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(gotData:) name:kGotData object:nil];

-(void)gotData:(NSNotification *)notification
{
NSDictionary *myUserInfo = notification.userInfo;

// more code to process userInfo, etc.
}

如果 gotData 处理 myUserInfo 的时间比它从通知中心接收调用的时间长怎么办?

最佳答案

所有发布的通知都会发送给观察者并在同一个线程上立即处理。因此,如果 gotData: 需要时间并且不将它的处理推送到不同的线程,它只会阻塞将要发布下一个通知的任何内容。因此,下一条通知将在稍后发布(比您预期的要晚)。

关于ios - NSNotification 对象的生命周期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19236474/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com