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.

link|improve this question

74% accept rate
Check your Settings.app on the device (you (the user) can control which apps are allowed to appear there). – Freerunnering Oct 24 '11 at 19:19
feedback

1 Answer

up vote 1 down vote accepted

You also need to have a provisioning profile for your app that allows for push notifications. If something goes wrong when registering for push notifications, your app delegate will get notified via application:didFailToRegisterForRemoteNotificationsWithError:. The error object will contain relevant information. Use it to verify that nothing goes wrong.

link|improve this answer
Long and complicated process - but it did work. The app is now listed in the Notification Center. T H A N K S!! – Sam Oct 24 '11 at 23:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.