我通过PushNotificationIOS API在我的IOS应用程序图标上设置了徽章编号。但是,我根本看不到图标上方的数字。没有错误。
componentDidMount() {
//PushNotificationIOS.requestPermissions(['badge','alert','sound']);
PushNotificationIOS.setApplicationIconBadgeNumber(10);
PushNotificationIOS.getApplicationIconBadgeNumber((res)=>{
console.log(res) //returns 10
});
}