Is it possible to receive all push notifications that app recieved in background mode.
I mean that when app runned and then app went to background mode and then app recieve push notifications(in background mode) and user does not press view button on alert message (this button run app) and after some minutes user launch app, in this point I want get all push notifications that my app recieve in background mode.
Is it possible to receive all push notifications that app recieved in background mode.
Share
Yes, applications can and do receive Push Notifications whether they are backgrounded or not even active. In your
applicationDidEnterBackground:method you can check to see if your app has received a notification, then handle it from there.