发送 NSDistributedNotification 并获得响应

发布于 2024-12-23 00:33:47 字数 69 浏览 2 评论 0原文

我创建了一个 firebreath 插件,用于向可可应用程序发送通知。如果成功收到通知,有什么办法可以从应用程序获得响应吗?

I created a firebreath plugin that sends a notification to a cocoa application. Is there any way to get a response from the application if the notification was recived successfully?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一杯敬自由 2024-12-30 00:33:47

假设您可以在 firebreath 插件中接收它们,为什么不发回 NSDistributedNotification 呢?我已经使用这种机制来使应用程序与后台代理进行通信,并且效果非常好。

[[NSDistributedNotificationCenter defaultCenter] 
    postNotificationName:<#ping-or-pong#> 
    object:<#sender-id#> 
    userInfo:nil 
    deliverImmediately:NO];

您可以使用 <#sender-id#>(例如字符串)来允许每个部分跳过自己的通知。

Assuming you can receive them in firebreath plugins, why don't you send an NSDistributedNotification back? I've used this mechanism to communicate an app with a background agent and it works perfectly.

[[NSDistributedNotificationCenter defaultCenter] 
    postNotificationName:<#ping-or-pong#> 
    object:<#sender-id#> 
    userInfo:nil 
    deliverImmediately:NO];

You can use <#sender-id#> (a string, for instance) to allow each part to skip its own notifications.

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