NSNotificationCenter 发送者平等标准
NSNotificationCenter 是否使用指针相等或其他一些标准(如 isEqual: 或 hash:)来确定是否应将通知发送给观察者?
Does NSNotificationCenter use pointer equality or some other criteria (like isEqual: or hash:) to determine whether a notification should be sent to an observer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
指针相等——它只转发来自观察者正在观察的特定对象的通知。
Pointer equality -- it only forwards notifications from the specific object that an observer is observing.