If a UILocalNotification fires with a sound set, and the user taps \"Cancel\" on the notification alert, the sound is stopped. But if the user taps \"View\", iOS then del
It can be handled in application delegate method as follows, if the user taps the Action button of the notification's alert, then the following method will be called, there we can cancel the notification
- (void)application:(UIApplication *)app
didReceiveLocalNotification:(UILocalNotification *)notif {
[[UIApplication sharedApplication]cancelLocalNotification:notif];
}