我的应用安排UILocalNotifications在用户选择的不同时间交付给用户。
我遇到了如何在这种情况下管理applicationIconBadgeNumber的情况。
众所周知,您必须在创建通知时设置徽章编号。我的问题是徽章数量的状态可以随时改变。请考虑以下情况:
1)用户收到3个通知。
2)用户创建一个新通知,以便在将来的某个特定时间点提醒她。此通知的值为1加上应用程序徽章的当前值(3)。
3)用户开展业务。在他们的业务过程中,他们通过查看或使用应用程序清除他们当前拥有的所有3个通知(以及徽章编号)。
4)经过一段时间后,iOS中会显示通知以及之前计算的值(如果您不记得,则为4)。
5)即使用户只有一个实际通知,应用程序徽章现在也是4。
我上下搜索过,但我找不到这个问题的答案,几乎可以肯定的是,我完全没有找到答案。我该如何解决这个窘境?
答案 0 :(得分:11)
由于您的应用程序将来无法查看,并且知道您将立即处理哪些事件,以及哪些事件将暂时“暂停”,因此有一些技巧要做:
当您的应用处理通知时(通过点击通知,图标,...),您必须:
此外,当您的应用注册新通知时,它必须首先检查有多少通知待处理,并使用以下内容注册新通知:
badgeNbr = nbrOfPendingNotifications + 1;
查看我的代码,它会更清晰。我测试了这个,它肯定有用:
在“registerLocalNotification”方法中,您应该这样做:
NSUInteger nextBadgeNumber = [[[UIApplication sharedApplication] scheduledLocalNotifications] count] + 1;
localNotification.applicationIconBadgeNumber = nextBadgeNumber;
当你处理通知(appDelegate)时,你应该调用下面的方法,它清除图标上的徽章并重新设置待处理通知的徽章(如果有的话)
请注意,下一个代码适用于“顺序”注册事件。如果您要在待处理事件之间“添加”事件,则必须先对这些事件进行“重新排序”。我没有那么远,但我认为这是可能的。
- (void)renumberBadgesOfPendingNotifications
{
// clear the badge on the icon
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
// first get a copy of all pending notifications (unfortunately you cannot 'modify' a pending notification)
NSArray *pendingNotifications = [[UIApplication sharedApplication] scheduledLocalNotifications];
// if there are any pending notifications -> adjust their badge number
if (pendingNotifications.count != 0)
{
// clear all pending notifications
[[UIApplication sharedApplication] cancelAllLocalNotifications];
// the for loop will 'restore' the pending notifications, but with corrected badge numbers
// note : a more advanced method could 'sort' the notifications first !!!
NSUInteger badgeNbr = 1;
for (UILocalNotification *notification in pendingNotifications)
{
// modify the badgeNumber
notification.applicationIconBadgeNumber = badgeNbr++;
// schedule 'again'
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
}
}
}
@Whassaahh的信用