ios - 更新 iOS 图标角标(Badge)编号
<p><p>我有一个图标角标(Badge)编号更新要求。该应用程序跟踪任务。我希望该应用程序有一个角标(Badge),显示每天到期的任务数。角标(Badge)编号需要更新的情况基本有两种:</p>
<ol>
<li>每天午夜。</li>
<li>如果添加新任务或删除任务。</li>
</ol>
<p>我知道如何处理第二种情况。我可以在 applicationResignActive 函数中设置角标(Badge)编号。但是,午夜自动更新对我来说是个窍门。要更新角标(Badge)编号,我需要调用应用程序的函数来计算当天到期的任务。但是,在午夜,应用程序可能处于所有可能的情况:前台、后台和未运行。我怎样才能做到这一点?谢谢。</p>
<p>======================================</p>
<p>为了更清楚我的要求,我希望每天正确更新角标(Badge)编号,即使用户一整天或连续几天都不会打开应用程序。另外,我会尽量避免服务器端支持,因为到目前为止该应用程序是一个独立的应用程序。非常感谢您的帮助。</p>
<p>======================================</p>
<p>最终更新:我接受了 Vitaliy 的回答。但是,他的回答要求应用程序每天至少打开一次。否则,事件不会触发,角标(Badge)编号也无法更新。</p>
<p>另外,就我而言,每次应用进入后台事件触发时,我都必须删除现有通知并安排一个新通知,并重新计算最新的角标(Badge)编号。</p>
<p>我仍然对某种方式来处理应用程序不是每天打开的情况感兴趣,您如何确保角标(Badge)编号是正确的。到目前为止,最简单的方法是设置一些服务器并让它定期向应用推送通知。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你可以用 <code>UILocalNotification</code> 来实现它:</p>
<ol>
<li>当应用进入后台时,计算最近午夜的准确角标(Badge)计数</li>
<li>将 <code>UILocalNotification</code> 安排在您计算出的角标(Badge)数量最近的午夜</li>
<li>您将在午夜收到通知,并且应用的角标(Badge)数量将更新</li>
</ol>
<p>示例代码:</p>
<pre><code>- (void)applicationDidEnterBackground:(UIApplication *)application {
// Calculate nearest midnight or any other date, which you need
NSDate *nearestMidnight = ;
// Create and setup local notification
UILocalNotification *notification = ;
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 = ;
;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 更新 iOS 图标角标(Badge)编号,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/33621105/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/33621105/
</a>
</p>
页:
[1]