I did some research on lots of stackoverflow issues and websites in trying to figure out how do the iOS push notifications influence AppDelegate
lifecycle methods and when is which method (not) getting triggered. Main focus of the research was on "standard" iOS push notifications (with alert
field) and silent ones (with just content-available
set to 1
) and on AppDelegate's application:didReceiveRemoteNotification
and application:didFinishLaunchingWithOptions
methods.
I don't want to ask lots of questions for different scenarios, but would rather try to write down the statements about different test cases I tried and ask you after that:
Is there any statement that is wrong and if yes, which one and why?
Scenario 1: App has been used and put to background by tapping the home button.
If standard push notification is sent, in the moment of push notification arrival, none of the methods gets triggered, app remains inactive in background. Once push notification has been tapped and app got opened because of it,
application:didReceiveRemoteNotification
method got called andapplication:didFinishLaunchingWithOptions
doesn't get called. I tested this scenario right after putting the app to background and also after an app being in background for more than an hour - same behaviour. I guess that if for some reason iOS decided to kill my app while being in background, this test case becomes like Scenario 2, statement 1 from below, right?If silent push notification is sent, in the moment of the push notification arrival,
application:didReceiveRemoteNotification
method got called andapplication:didFinishLaunchingWithOptions
doesn't get called.
Scenario 2: App has been used and killed by swiping it out of the list of running apps.
If standard push notification is sent, in the moment of push notification arrival, none of the methods get triggered, app remains killed. Once push notification has been tapped and app got opened because of it,
application:didReceiveRemoteNotification
method got called andapplication:didFinishLaunchingWithOptions
doesn't get called.If silent push notification is sent, none of the methods gets triggered since silent push notifications fail to be sent to the app that got killed. After opening an app after notification is sent,
application:didFinishLaunchingWithOptions
gets called as part of the normal flow and without any push notification information.application:didReceiveRemoteNotification
doesn't get called.
If you can maybe think of some other real life scenarios that I maybe forgot to mention, I would be really grateful to find out about them and what happens in those cases.
Cheers
Update #1
Thanks to Sandeep Bhandari for the update and additional scenarios. I forgot to mention in my original question that I was exploring scenarios in which application is arriving to the app that is currently not
in the foreground for whatever reason.
Adding Sandeep's scenarios to the list:
Scenario 3: App is being used and push notification arrives.
If standard push notification is sent
application:didReceiveRemoteNotification
method will get called.application:didFinishLaunchingWithOptions
will not get called.If silent push notification is sent
application:didReceiveRemoteNotification
method will get called.application:didFinishLaunchingWithOptions
will not get called.
Scenario 4: App being alive in background.
If standard push notification is sent
application:didReceiveRemoteNotification
method will get called.application:didFinishLaunchingWithOptions
will not get called.If silent push notification is sent
application:didReceiveRemoteNotification
method will get called.application:didFinishLaunchingWithOptions
will not get called.