我创建了一个向可可应用程序发送通知的 firebreath 插件。如果成功收到通知,有什么方法可以从应用程序中获得响应?
问问题
389 次
1 回答
0
假设你可以在firebreath插件中接收它们,你为什么不发NSDistributedNotification
回呢?我已经使用这种机制将应用程序与后台代理进行通信,并且它运行良好。
[[NSDistributedNotificationCenter defaultCenter]
postNotificationName:<#ping-or-pong#>
object:<#sender-id#>
userInfo:nil
deliverImmediately:NO];
您可以使用<#sender-id#>
(例如字符串)来允许每个部分跳过自己的通知。
于 2011-12-28T18:44:41.517 回答