How to get already fired UILocalNotification
I'm implementing UILocalNotification in my app, and the notifications are delivered as expected. As I have understood, the notifications are handled like this: When the application is not running, and the user click the notifiction, the app receives the notification through the options in the applicationDidFinishLaunching method. When the application is active, it receives the notification through the didReceiveLocalNotification method. When the application is in the background, and the user clicks the notification, it receives the notification through the didReceiveLocalNotification method.