我在iOS PhoneGap-app中显示本地通知时遇到问题。我已经尝试过Katzer Local Notifications插件(https://github.com/katzer/cordova-plugin-local-notifications#schedule-local-notifications)和Wizcorp Local Notifications插件(https://github.com/Wizcorp/phonegap-plugin-localNotifications),但均不适合我。安装完两个插件后,我可以访问它们各自的JavaScript对象,并且使用Wizcorp插件,我什至可以操纵应用程序徽章,但似乎无法添加本地通知。这使我相信问题出在我的应用程序/安装中。

我已经在ios模拟器和Phonegap开发人员应用程序上尝试了这两个插件。

编辑:
我目前只是想使它与插件示例代码一起使用:

    var now                  = new Date().getTime(),
    _60_seconds_from_now = new Date(now + 60*1000);
window.plugin.notification.local.add({
    id:      1,
    title:   'Reminder',
    message: 'Dont forget to buy some flowers.',
    repeat:  'weekly',
    date:    _60_seconds_from_now
});

最佳答案

确保您已为本地通知注册了应用程序。添加插件时,这不会自动完成。

例如(在应用程序委托application:didFinishLaunchingWithOptions:方法中):

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

10-07 22:48