Is there a way in AppDelegate to get a queue of all the notification data? (Once the user opens the app).
You can check for launchOptions Dictionary, for received Notification, when App resumes on tapping a notification,
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
NSLog(@"Launch Options:%@",launchOptions);
return YES;
}