iOS 中的推送通知是否可以在不打开应用程序的情况下更新应用程序图标上的徽章编号?
Is it possible to update badge number on app icon without openining app on push notification in iOS?
iOS 8 或 9
当我在我的 iOS 应用程序中收到推送通知时,我想更新应用程序图标上显示的徽章编号(红色计数)而不打开应用程序。
目前它只会在应用程序打开后更新。
这可能吗?
您需要在推送通知负载中为徽章键设置一个值。 Payload Notification
负载包含有关您希望如何通知用户的信息,例如使用警报、徽章或声音。它还可以包含您定义的自定义数据。
To remove the badge, set the value of this property to 0.
iOS 8 或 9
当我在我的 iOS 应用程序中收到推送通知时,我想更新应用程序图标上显示的徽章编号(红色计数)而不打开应用程序。
目前它只会在应用程序打开后更新。
这可能吗?
您需要在推送通知负载中为徽章键设置一个值。 Payload Notification
负载包含有关您希望如何通知用户的信息,例如使用警报、徽章或声音。它还可以包含您定义的自定义数据。
To remove the badge, set the value of this property to 0.