gpt4 book ai didi

ios - 当应用程序进入前台时获取待处理通知

转载 作者:行者123 更新时间:2023-12-01 17:47:37 25 4
gpt4 key购买 nike

如果您点击通知中心的通知,您会在代码中获取通知信息,但如果用户不点击它,而只会点击主屏幕上的应用图标怎么办?

例如,因为通知负载还包含角标(Badge)属性。然后用户可以点击应用程序图标,因为角标(Badge)编号在闪闪发光,但是在这种情况下,您如何管理代码中的等待通知?

如果没有方法,那么通知负载中的角标(Badge)属性就有点没用了,不是吗。因为如果用户点击带有角标(Badge)编号的图标,他预计会发生某些事情,但应用程序无法对未决通知执行任何操作,因此无法执行任何操作。或者?

最佳答案

getDeliveredNotifications 方法似乎允许这样做。

- (void)applicationWillEnterForeground:(UIApplication *)application {
NSLog(@"msg applicationWillEnterForeground");
#if defined(__IPHONE_10_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
// https://stackoverflow.com/a/52840551
[[UNUserNotificationCenter currentNotificationCenter] getDeliveredNotificationsWithCompletionHandler:^(NSArray<UNNotification *> * _Nonnull notifications) {
NSLog(@"msg getDeliveredNotificationsWithCompletionHandler count %lu", [notifications count]);

for (UNNotification* notification in notifications) {
// do something with object
NSLog(@"msg noti %@", notification.request);
}

}];
#endif
}

关于ios - 当应用程序进入前台时获取待处理通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44161196/

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