2011-01-25 3 views

risposta

18

È possibile impostare il numero distintivo del icona dell'applicazione in questo modo:

[UIApplication sharedApplication].applicationIconBadgeNumber = 3; 
3

Se hai intenzione di mettere il numero distintivo attraverso messaggi push, è possibile inviare il PUSH come:

{"aps":{"alert":"My Push Message","sound":"default","badge",3}} 

Quindi nel tuo AppDelegate aggiungi quanto segue:

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{ 

// This get's the number you sent in the push and update your app badge. 
[UIApplication sharedApplication].applicationIconBadgeNumber = [[userInfo objectForKey:@"badge"] integerValue]; 

// Shows an alert in case the app is open, otherwise it won't notify anything 
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"New Notification!" 
               message:[[userInfo objectForKey:@"aps"] objectForKey:@"alert"] delegate:self 
               cancelButtonTitle:@"OK" 
               otherButtonTitles:nil]; 
[alertView show];  
}