Remove push from notificationcenter after app has been opened
问题 When I send out a PUSH notification to my app, it stays in the notification center in iOS 5. How can I remove the notification from the notification center from within the app? 回答1: Clearing the badge clears the notifications from the notification center. - (void)applicationDidBecomeActive:(UIApplication *)application { // Clear application badge when app launches [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0]; } This only works if the number changes. So to make it work