ios
ios copied to clipboard
How To Get Push Notification Content When App in Kill Mode or closed.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary )launchOptions
{
............
if (launchOptions != nil) { NSDictionary userInfo = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey]; if (userInfo != nil) { NSLog(@"userInfo->%@", [userInfo objectForKey:@"aps"]); } } ............. return YES; }_
@tbsphpdev Did you got it working ???
Same Issues I am facing my side as well
Same problem, want to get data of all notification which is received when app is killed/closed