When your app is open and running in the foreground, the default behavior is that the sound is not played and the user doesn't receive any alert/banner from the OS. You can receive the notification through the following method (in the class that is your AppDelegate):
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
NSLog(@"Do something");
}
And from there you can trigger any other method.
From the documentation on UILocalNotification:
If the application is foremost and visible when the system delivers
the notification, no alert is shown, no icon is badged, and no sound
is played. However, the application:didReceiveLocalNotification: is
called if the application delegate implements it. The
UILocalNotification instance is passed into this method, and the
delegate can check its properties or access any custom data from the
userInfo dictionary.