数据改变时的 NSNotification

发布于 2024-11-09 12:45:09 字数 152 浏览 0 评论 0原文

假设我有一个解析 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 技术交流群。

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

发布评论

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

评论(1

七秒鱼° 2024-11-16 12:45:09

对我来说听起来是个好计划。是的,您可以传递用户数据。

请参阅 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.

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