-[NSNotificationCenter postNotificationName:object:] 我可以为对象传递 nil 吗?

发布于 2024-11-16 06:05:17 字数 152 浏览 1 评论 0原文

我可以为 -[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 技术交流群。

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

发布评论

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

评论(1

转角预定愛 2024-11-23 06:05:17

传递 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.

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