I am developing an iOS alarm app using local notifications. I have done the local notification but 3 notifications are received at time. How do I get information form all 3 notifications? - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { UILocalNotification *localNotif = [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey]; NSLog(@"DEMO"); NSDictionary *dict = [localNotif userInfo]; // id obj = [dict objectForKey:@"TESTKEY"]; […]
The post how to get multiple notification data at a time? appeared first on BlogoSfera.