我有一个图标角标(Badge)编号更新要求。该应用程序跟踪任务。我希望该应用程序有一个角标(Badge),显示每天到期的任务数。角标(Badge)编号需要更新的情况基本有两种:
我知道如何处理第二种情况。我可以在 applicationResignActive 函数中设置角标(Badge)编号。但是,午夜自动更新对我来说是个窍门。要更新角标(Badge)编号,我需要调用应用程序的函数来计算当天到期的任务。但是,在午夜,应用程序可能处于所有可能的情况:前台、后台和未运行。我怎样才能做到这一点?谢谢。
======================================
为了更清楚我的要求,我希望每天正确更新角标(Badge)编号,即使用户一整天或连续几天都不会打开应用程序。另外,我会尽量避免服务器端支持,因为到目前为止该应用程序是一个独立的应用程序。非常感谢您的帮助。
======================================
最终更新:我接受了 Vitaliy 的回答。但是,他的回答要求应用程序每天至少打开一次。否则,事件不会触发,角标(Badge)编号也无法更新。
另外,就我而言,每次应用进入后台事件触发时,我都必须删除现有通知并安排一个新通知,并重新计算最新的角标(Badge)编号。
我仍然对某种方式来处理应用程序不是每天打开的情况感兴趣,您如何确保角标(Badge)编号是正确的。到目前为止,最简单的方法是设置一些服务器并让它定期向应用推送通知。
你可以用 UILocalNotification
来实现它:
UILocalNotification
安排在您计算出的角标(Badge)数量最近的午夜示例代码:
- (void)applicationDidEnterBackgroundUIApplication *)application {
// Calculate nearest midnight or any other date, which you need
NSDate *nearestMidnight = [self nearestMidnight];
// Create and setup local notification
UILocalNotification *notification = [UILocalNotification new];
notification.alertTitle = @"Some title";
notification.alertBody = @"Some message";
notification.fireDate = nearestMidnight;
// Optional set repeat interval, if user didn't launch the app after nearest midnight
notification.repeatInterval = NSCalendarUnitDay;
// Calculate badge count and set it to notification
notification.applicationIconBadgeNumber = [self calculateBadgeCountForDate:nearestMidnight];
[application scheduleLocalNotification:notification];
}
关于ios - 更新 iOS 图标角标(Badge)编号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33621105/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |