Pushwhoosh remote notification

白昼怎懂夜的黑 提交于 2019-11-27 08:46:31

问题


We used Pushwhoosh for remote notification. Its working fine but Icon badge count not increased.

Here is code:

- (void) onPushReceived:(PushNotificationManager *)pushManager withNotification:(NSDictionary *)pushNotification onStart:(BOOL)onStart
{
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:1];
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [[UIApplication sharedApplication] registerForRemoteNotificationTypes:  (UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge)];

     PushNotificationManager * pushManager = [PushNotificationManager pushManager];
    pushManager.delegate = self;

    if ([launchOptions objectForKey:UIApplicationLaunchOptionsLocationKey]) {
        PushNotificationManager * pushManager = [PushNotificationManager pushManager];
        [pushManager startLocationTracking];
    }

    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:1];
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
}

How to increase app Icon badge count upon push delivery ?


回答1:


It is a badge number issue from server side.Check whether the push notification payload contains application badge field and set to values greater than 0. Because when the application is closed/in Background,the value in notification payloads is used to set badge in default by iOS and not the value in your code.Your code will set badge only when the application is running state.In your case,most probably the badge value passing in payload will be 0.




回答2:


Got solution. We have option to set notification badge number in push whoosh server.



来源:https://stackoverflow.com/questions/26117430/pushwhoosh-remote-notification

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!