1

在我的应用程序中,我有触发本地通知的对象。

当应用程序在后台时,本地通知会在它们被触发的时候被触发,并且效果很好。

由于某种原因,徽章编号未更新。

在设置 Notification 对象时,我使用以下代码:

UILocalNotification* localNotification = [[UILocalNotification alloc] init];

localNotification.fireDate = obj.noteMeDate; //obj is an object for which the notification is created...
localNotification.alertBody = [NSString stringWithFormat:@"Note: %@", obj.title];
localNotification.alertAction = @"Show Me";
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.soundName = UILocalNotificationDefaultSoundName;
localNotification.applicationIconBadgeNumber = [[UIApplication sharedApplication] applicationIconBadgeNumber] + 1; //this is NOT WORKING...

[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];

任何人?

4

2 回答 2

0

您不能增加徽章数量,您只能将其设置为一定数量。在您安排通知时,applicationIconBadgeNumber为 0(因为您在前台运行应用程序),因此每个通知在徽章中仅显示 1。

于 2013-10-15T09:44:56.053 回答
0

从技术上讲,您不能直接增加徽章图标,但有一种方法。

int num = [UIApplication sharedApplication].applicationIconBadgeNumber;

[UIApplication sharedApplication].applicationIconBadgeNumber = num + 1;
于 2013-12-20T06:22:22.157 回答