Skip to content

Instantly share code, notes, and snippets.

@Hokila
Created April 21, 2013 14:02
Show Gist options
  • Save Hokila/5429682 to your computer and use it in GitHub Desktop.
Save Hokila/5429682 to your computer and use it in GitHub Desktop.
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
if([[userInfo objectForKey:@"aps"] objectForKey:@"alert"]!=NULL){
NSString *alertbody = [[userInfo objectForKey:@"aps"] objectForKey:@"alert"];
application.applicationIconBadgeNumber = application.applicationIconBadgeNumber+1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment