徽章未显示在应用程序图标上 iOS

Badge not showing on application icon iOS

我发送了带有徽章的推送通知,但它并没有增加应用程序图标上的数字。我在 phone 通知下看到一件事,我的应用没有徽章选项。任何人都知道我如何才能在通知 window 的应用程序设置下显示徽章选项。

解决此问题如果您在 requestAuthorizationWithOptions 期间未通过 UNAuthorizationOptionBadge 设置您的应用程序通知不显示徽章选项,最终您将不会收到来自服务器端的徽章通知您正在发送带有徽章的通知。

UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
center.delegate = self;
[center requestAuthorizationWithOptions:(UNAuthorizationOptionAlert + UNAuthorizationOptionSound + UNAuthorizationOptionBadge)
                      completionHandler:^(BOOL granted, NSError * _Nullable error) {
                        // Enable or disable features based on authorization.
                        [[Appboy sharedInstance] pushAuthorizationFromUserNotificationCenter:granted];
                      }];