My app uses Local Notifications to communicate with the user. The legacy code for iOS4 is working well, but in iOS5, notifications are not shown. After reading on the web, I added the following in the didFinishLaunchingWithOptions: method
[[UIApplication sharedApplication]registerForRemoteNotificationTypes: UIRemoteNotificationTypeBadge |
UIRemoteNotificationTypeAlert |
UIRemoteNotificationTypeSound];
I still do not see the app in the Notification Center. Is anything more required to make the app being listed in the Notification Center?
Sam.