-[NSNotificationCenter postNotificationName:object:] 我可以为对象传递 nil 吗?
我可以为 -[NSNotificationCenter postNotificationName:object:]
的对象参数传递 nil 吗,因为观察者不关心发送者是谁,或者传递 self
对于对象参数,即使观察者没有检查谁发送了通知?
Can I pass nil for the object argument of -[NSNotificationCenter postNotificationName:object:]
since the observers don't care who the sender is, or is it better practice to pass self
for the object argument even though the observers aren't checking who sent the notification?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
传递 nil 不会造成任何伤害。能够知道发送通知的内容真是太好了,即使当前观察者不需要知道也不需要检查它。
Passing nil won't harm anything. It's just nice to be able to know what sent the notification, even if current observers don't need to know and don't check it.