I have Implemented a reminder application.
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
int count = [[[UIApplication sharedApplication] scheduledLocalNotifications] count];
NSLog(@"count is %d",count);
All are works fine notification alert raises when it's scheduled time arives.
Suddenly today notifications are not showing . and they didn't scheduled
notifications count also remains same even i set the notification,
But when i exicuted the application in my device, it works perfectly, notificaton count increases, Notification alert raises perfectly
But not work in simulator...
Why Notifications doesn't work on simulator..?
I have used Xcode 4.1
iPhone 4.3 simulator
What happen?