iOS是否有“通知听众”?

时间:2014-02-27 16:04:25

标签: ios notifications push-notification

是否可以在iOS中创建通知侦听器?类似 Android 中的NotificationListenerService

编辑:我想要做的是收听来自设备内任何应用的任何通知(未接来电,电子邮件,短信......)

1 个答案:

答案 0 :(得分:4)

有两种可能的答案。

NSNotificationCenter用于在应用内发布通知。比方说,你想要几个类都接收到某些事情发生的信息(或者其他什么)然后你会使用它。 https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/nsnotificationcenter_Class/Reference/Reference.html

如果您的意思是Remote Notifications,即您从Apple收到推送通知,那么AppDelegate会通过几种方式接收这些通知......

https://developer.apple.com/library/ios/documentation/uikit/reference/UIApplicationDelegate_Protocol/Reference/Reference.html#//apple_ref/doc/uid/TP40006786-CH3-SW16

修改:应用之间无法实现。见评论。