发送 NSDistributedNotification 并获得响应
我创建了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您可以在 firebreath 插件中接收它们,为什么不发回
NSDistributedNotification
呢?我已经使用这种机制来使应用程序与后台代理进行通信,并且效果非常好。您可以使用
<#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.You can use
<#sender-id#>
(a string, for instance) to allow each part to skip its own notifications.