iOS5应用程序未在通知中心中列出

时间:2011-10-24 17:39:01

标签: ios uilocalnotification nsnotificationcenter

我的应用使用本地通知与用户进行通信。 iOS4的遗留代码运行良好,但在iOS5中,未显示通知。在网上阅读后,我在didFinishLaunchingWithOptions中添加了以下内容:方法

[[UIApplication sharedApplication]registerForRemoteNotificationTypes: UIRemoteNotificationTypeBadge | 
                                                                      UIRemoteNotificationTypeAlert |
                                                                      UIRemoteNotificationTypeSound];

我仍然没有在通知中心看到该应用。是否还需要使应用程序列在通知中心?

萨姆。

1 个答案:

答案 0 :(得分:1)

您还需要为您的应用提供允许推送通知的配置文件。如果在注册推送通知时出现问题,您的应用代表将通过application:didFailToRegisterForRemoteNotificationsWithError:收到通知。错误对象将包含相关信息。用它来验证没有出错。