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
I tried @dianz's answer, It's not worked for me but I got a help from the answer.
In my case;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
NSDictionary *apnsBody = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];
if (apnsBody) {
// Do your code with apnsBody
}