How to catch all push notifications from other apps on iOS using private frameworks?

后端 未结 1 1814
旧时难觅i
旧时难觅i 2021-01-03 11:39

I\'m looking for a method to detect incoming push notifications directed to other apps on iOS. I know there\'s probably no way this can be done with public frameworks, but s

1条回答
  •  攒了一身酷
    2021-01-03 12:22

    Very interesting question!

    I have some ideas which may help you.

    Private framework SpringboardServices:

    • SBSPushStore class
    • SBSPush*

    Then, there is the BulletinBoardService. It's the codename for the Notification Center. And because it shows a list of notifications, it must contain notification data somewhere. I'd take a closer look into this framework.

    Finally, my last guess, there is an ApplePushService private framework. I think it receives the remote notifications.

    Good luck! Keep us updated :)

    0 讨论(0)
提交回复
热议问题