If you want to put the badge number in PUSH messages, you can send PUSH as:
{"aps":{"alert":"My Push Message","sound":"default","badge",3}}
Then in your AppDelegate you add the following:
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{
soon:
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any]) {
gmogames
source share