2

有时我的应用程序的本地通知会被触发(显示)两次。我没有使用模拟器,而是使用真实设备。我一直试图获得一个重现步骤,但我无法做到。每次我使用断点/nslog 完成该过程时,我总是会收到 1 个安排好的通知。有了这个,我假设我只会显示/触发 1 个通知。但是,有时我会收到两个通知。我已经在互联网上搜索了答案,但我无法获得太多信息。这里有人经历过同样的事情吗?你是如何解决问题的?

- (void)scheduleAllNotifications
{
    if (_isEnabled && [[NSUserDefaults standardUserDefaults] boolForKey:NotificationsUserDefaultsKey]) {
        [self updateFireDates];
        for (NSDate *fireDate in fireDates) {
            UILocalNotification *notification = [[UILocalNotification alloc] init];
            notification.fireDate = fireDate;
            notification.alertBody = @"Message";
            notification.alertAction = @"View";
            notification.soundName = @"notificationsound.mp3";
            [notifications addObject:notification];

            [[UIApplication sharedApplication]scheduleLocalNotification:notification];
        }
    }
}



- (void)cancelAllNotifications
{
    [[UIApplication sharedApplication] cancelAllLocalNotifications];
    [notifications removeAllObjects];

}

- (void)updateFireDates
{
    [fireDates removeAllObjects];
    NSDate *now = [NSDate date];
    NSDate *fireDate = [NSDate dateWithTimeInterval:THREEDAYS sinceDate:now];
    if (fireDate){[fireDates addObject:fireDate];}
}

每次应用程序变为活动状态时都会调用 cancelAllNotifications 每次应用程序退出活动时都会调用 shceduleAllNotifications

4

2 回答 2

4

Bart Doe 是对的,这些是之前测试运行的杂散通知。

要解决此问题,请[[UIApplication sharedApplication] cancelAllLocalNotifications];在 AppDelegate 内调用- (void)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions,以清除所有先前计划的通知。

于 2015-09-03T22:21:31.437 回答
2

由于您似乎处于项目的构建/调试阶段,因此如果这些双重通知实际上是旧通知,我不会感到惊讶。我碰巧认为该设备创建了奇怪的杂散通知,而实际上在开发/测试期间我自己创建了错误的通知。

您可以做的是在 userInfo 字段中添加一些额外的调试信息。您可以将内部版本号或创建日期/时间之类的东西放在那里。然后在通知触发时记录这些。

但是,您可能确实遇到了一个错误: 本地通知“didReceiveLocalNotification”调用了两次

于 2013-08-23T06:56:07.170 回答