注册推送通知时,我没有启用徽章警报...
- (void)registerForPushNotifications {
UIRemoteNotificationType notificationTypes = (UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound);
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:notificationTypes];
}
...所以我不明白它为什么会显示。
我可以弄清楚如何禁用徽章显示在我的图标上的唯一方法是重置applicationIconBadgeNumber
应用程序委托中的值,但这感觉有点hacky。有什么我可以简单地禁止徽章编号显示在我的应用程序图标上吗?
提前感谢您的智慧!