iOS 8 收到远程通知时图标徽章未更新
iOS 8 icon badge not updating when receiving remote notification
我正在开发一个使用远程通知的 iOS 应用程序。一切正常,但我注意到图标徽章在收到通知时不显示任何数字。
我在我的 AppDelegate 中以这种方式请求权限:
[application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
[application registerForRemoteNotifications];
还有什么需要我做的吗?
谢谢!
推送通知负载应包含带有 "badge"
键的值,这将自动更新应用程序图标的徽章。
我正在开发一个使用远程通知的 iOS 应用程序。一切正常,但我注意到图标徽章在收到通知时不显示任何数字。
我在我的 AppDelegate 中以这种方式请求权限:
[application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
[application registerForRemoteNotifications];
还有什么需要我做的吗?
谢谢!
推送通知负载应包含带有 "badge"
键的值,这将自动更新应用程序图标的徽章。