使用 NSNotificationCenter 向另一个类发送通知
所以我的目标是使用 NSNotificationCenter 向另一个类传递通知,我还想将带有通知的对象传递给另一个类,我应该怎么做?
So my goal is to deliver a notification to another class with using NSNotificationCenter
, I also want to pass object
with the notification to the other class
, how should I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须首先注册一个通知名称
,然后使用参数字典发布通知
,方法将是
You must first register a notification name
And then post a notification with a dictionary of parameters
and the method will be
只需按照 此处,例如:
发布通知:
其中
userInfo
是包含有用对象的字典。另一方面注册通知:
您还可以检查Apple的 通知编程主题。
Just call any method for posting notifications as described here, for instance :
to post a notification :
where
userInfo
is a dictionary containing useful objects.On the other side to register for notifications :
You could also check Apple's Notification Programming Topics.