数据改变时的 NSNotification
假设我有一个解析 RSS 提要的程序。
我有一个在线程中运行的方法,该方法不断检查更新。如果发现更新,则会创建 NSNotification。这是一个愚蠢的实现吗?
是否可以在 NSNotification 中传递自定义参数,例如更新的 elementId。
Let's assume that I have a program that parses a RSS feed.
I have a method that runs in a thread which keeps checking for updates. If updates is found a NSNotification is created. Is this a stupid implementation?
And is it possible to pass custom parameters within a NSNotification, such as the elementId that was updated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对我来说听起来是个好计划。是的,您可以传递用户数据。
请参阅 NSNotification 的 notificationWithName:object:userInfo:。 userInfo 是一个 NSDictionary,因此您可以传递任何您喜欢的内容。
Sounds like a good plan to me. Yes, you can pass user data.
See NSNotification's notificationWithName:object:userInfo:. The userInfo is an NSDictionary so you can pass whatever you like around.