NSNotificationCenter:在2个类之间传递通知

发布于 2024-09-08 13:27:42 字数 646 浏览 3 评论 0原文

我有两节课。

class1 通过网络获取一些信息。当其中一个信息到来时,class1 必须向 class2 发送通知。

我明白了,所以我必须将其放入

[[NSNotificationCenter defaultCenter] postNotificationName:at"anyUserNotification" object:class2];

class1

[[NSNotificationCenter defaultCenter] addObserver:self selector:atselector(anyInteraction:) name:dontKnowTheSense object:dunno2];

我是否理解了 postnotification 中的对象:class2 对吗? 如果是:是否可以进行匿名通知,以便发送班级不知道哪些班级以及有多少班级正在收听? 或者 - 至少我这么认为,我对整个通知的理解是否错误?

除了通知之外,我不需要传递任何数据,但在一种情况下,传递枚举会很有帮助

,所以有人可以帮助我吗?

顺便说一句:我找不到在这台 Windows 电脑上发布 at 的方法,我不知道为什么它没有缩进代码,我想我做了 4 个空格

i have 2 classes.

class1 gets some information through the net. when one of these informations comes, class1 has to send a notification to class2.

i understood it so that i have to put

[[NSNotificationCenter defaultCenter] postNotificationName:at"anyUserNotification" object:class2];

into class1

[[NSNotificationCenter defaultCenter] addObserver:self selector:atselector(anyInteraction:) name:dontKnowTheSense object:dunno2];

have i understood the object:class2 in the postnotification right ?
if yes: is it possible to make an anonymious notification, so that the sending class must not know, which and how many classes are listening ?
or - at least i think so, have i understood the whole notification incorrect ?

besides the notification i dont need to pass any data, but in one case it would be helpful to pass an enum

so, could anybody please help me ?

btw: i cant find a way to post an at on this windows-pc and i dont know, why it did not indent the code, i think i made 4 spaces

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

謸气贵蔟 2024-09-15 13:27:43

Object 不是强制参数,您可以将其设置为 nil 或发送通知消息的对象。

[[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationName" object:notificationSenderOrNil];

监听时,您可以过滤为仅对特定发件人发送的通知执行某些操作。

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sel) name:@"NotificationName" object:notificationSenderOrNil];

您可以使用 userInfo: 参数在字典中传递数据。

可以吗?

Object is not a mandatory argument you can set it to nil or the object sending the notification message.

[[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationName" object:notificationSenderOrNil];

When listening you can filter to only do something for notification sent by a specific sender.

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sel) name:@"NotificationName" object:notificationSenderOrNil];

And you can pass your data in a dictionnary with userInfo: argument.

Is it Ok with that ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文