When my App is not running and receives a Push Notification, if I click on that notification, the App is launched - but then it doesn\'t prompt the
Better be if you override didReceiveRemoteNotification
Here you go
NSDictionary * pushNotificationPayload = [launchOptions valueForKey:UIApplicationLaunchOptionsRemoteNotificationKey];
if(pushNotificationPayload) {
[self application:application didReceiveRemoteNotification:pushNotificationPayload];
}
This will again fire the didReceiveRemoteNotification
method and your push notification
code will execute as same as it runs during application run time.