Home > Back-end >  Get data from all app's notification in IOS
Get data from all app's notification in IOS

Time:10-24

I would like to develop an IOS app to get notification such as title and body from all applications in iPhone. Is it possible to do that?

CodePudding user response:

No it is not. On Android, yes this is possible. But not on Apple. They restrict permissions so that you cannot access that information as a developer.

CodePudding user response:

Every application is given a sandbox, a directory it can use to store data in. If the application needs access to data on the device that isn't located in the application's sandbox, it needs to request the data through a system interface. App can only read their notifications, other things are possible with Jailbreak.

Learn about app sandbox here

  • Related