Badge on App Icon in Iphone App
问题 How could we get a badge notification in the app icon , similar to badge notifications in tabbar item.? I need this for notifying new messages. 回答1: You can set the app icon's badge number like this: [UIApplication sharedApplication].applicationIconBadgeNumber = 3; 回答2: If you're wanting to put the badge number through PUSH messages, you can send the PUSH as: {"aps":{"alert":"My Push Message","sound":"default","badge",3}} Then in your AppDelegate you add the following: - (void)application: