是否可以在iOS中创建通知侦听器?类似 Android 中的NotificationListenerService。
编辑:我想要做的是收听来自设备内任何应用的任何通知(未接来电,电子邮件,短信......)
答案 0 :(得分:4)
有两种可能的答案。
NSNotificationCenter
用于在应用内发布通知。比方说,你想要几个类都接收到某些事情发生的信息(或者其他什么)然后你会使用它。 https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/nsnotificationcenter_Class/Reference/Reference.html
如果您的意思是Remote Notifications
,即您从Apple收到推送通知,那么AppDelegate会通过几种方式接收这些通知......
修改:应用之间无法实现。见评论。