更新iOS图标徽章编号

时间:2015-11-10 00:58:40

标签: ios notifications badge

我有一个图标徽章编号更新要求。该应用程序跟踪任务。我希望应用程序有一个徽章,显示每天到期的任务数量。基本上有两种情况需要更新徽章编号:

  1. 每天午夜。
  2. 如果添加了新任务或删除了任务。
  3. 我知道如何处理第二种情况。我可以在applicationResignActive func中设置徽章编号。但是,午夜自动更新对我来说很棘手。要更新徽章编号,我需要调用应用程序的func来计算当天到期的任务。但是,在午夜,应用程序可能处于所有可能的情况:前景,背景和未运行。我怎样才能做到这一点?谢谢。

    =====================================

    为了更清楚我的要求,我希望每天正确更新徽章编号,即使用户从未打开应用程序一整天或连续几天。此外,我会尽量避免服务器端支持,因为该应用程序到目前为止是一个独立的应用程序。非常感谢任何帮助。

    =====================================

    最后更新:我接受了Vitaliy的回答。但是,他的回答要求应用程序每天至少打开一次。否则,该事件不会被激活,并且徽章编号无法更新。

    此外,在我的情况下,每次应用程序进入后台事件触发时,我都必须删除现有通知并安排新通知,并重新计算最新的徽章编号。

    我仍然有兴趣以某种方式处理应用程序不是每天都打开的情况,如何确保徽章编号是正确的。到目前为止,最简单的方法是设置一些服务器并让它定期向应用程序推送通知。

1 个答案:

答案 0 :(得分:2)

您可以使用UILocalNotification

来实现
  1. 当应用转到后台时,计算最近午夜的确切徽章计数
  2. 在距离您计算的徽章数量最近的午夜安排UILocalNotification
  3. 您将在午夜收到通知,并且应用的徽章计数将会更新
  4. 示例代码:

    - (void)applicationDidEnterBackground:(UIApplication *)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];
    }