gpt4 book ai didi

iphone - 如何增加重复本地通知的应用程序徽章编号 (iPhone)

转载 作者:行者123 更新时间:2023-12-03 18:37:38 24 4
gpt4 key购买 nike

我已经设置了每分钟重复一次的本地通知,但是我需要每次都增加应用程序徽章编号。当我现在运行它时,它似乎没有增加,只是保持为 1。请问有人可以帮助我吗?

以下是我创建通知的方法:

// Create the UILocalNotification
UILocalNotification *myNotification = [[UILocalNotification alloc] init];
myNotification.alertBody = @"Blah blah blah...";
myNotification.alertAction = @"Blah";
myNotification.soundName = UILocalNotificationDefaultSoundName;
myNotification.applicationIconBadgeNumber++;
myNotification.timeZone = [NSTimeZone defaultTimeZone];
myNotification.repeatInterval = NSMinuteCalendarUnit;
myNotification.fireDate = [[NSDate date] dateByAddingTimeInterval:30];
[[UIApplication sharedApplication] scheduleLocalNotification:myNotification];

最佳答案

经过大量研究后,我发现解决方案是没有解决方案:

iPhone: Incrementing the application badge through a local notification

当您的应用处于后台时,无法通过本地通知动态更新徽章编号。您必须使用推送通知。

关于iphone - 如何增加重复本地通知的应用程序徽章编号 (iPhone),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9251081/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com