问题
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