IOS8+ 的通知中心未显示应用程序

App not showing in Notification Center for IOS8+

我正在开发使用 Urbanaisrship 推送通知的 Cordova 应用程序。

当我将我的构建加载到具有版本 (7.1) 的 iPhone-4 时,我可以在设备设置-->通知中心看到我的应用程序。

但是当我将相同的构建加载到我的其他设备时 Iphone 5s 版本 8.2 我的应用程序没有显示在设置-->通知中心。

所以哪位小伙伴可以告诉我IOS 8.2版有什么问题吗?

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//other code
// add this piece of code
if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {

        [application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil]];

        [application registerForRemoteNotifications];

    }

}

将这段代码添加到您的 appdelegate 文件中