gpt4 book ai didi

ios - 在没有推送通知的情况下更新 iOS 角标(Badge)

转载 作者:IT王子 更新时间:2023-10-29 07:30:43 27 4
gpt4 key购买 nike

我见过一些待办事项应用程序会在午夜更新其应用程序角标(Badge),始终显示正确的到期任务数。他们这样做时没有使用推送通知 - 所以我的问题是:他们是怎么做到的?他们是否使用本地通知——如果是,当设备关闭时是否会调用这些通知?我有点困惑,希望能提供一些意见。

最佳答案

试试这个

[[UIApplication sharedApplication] setApplicationIconBadgeNumber:1];

要通过本地通知执行此操作,您必须在 applicationIconBadgeNumber 中设置值

UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.applicationIconBadgeNumber = 1;// set here the value of badge

关于ios - 在没有推送通知的情况下更新 iOS 角标(Badge),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4861131/

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