Hi there i would like to know which app delegate method get called when my app launch from a push notification (When the app was previously in the background ?)
Asked
Active
Viewed 226 times
3 Answers
1
Implement the didReceiveLocalNotification: method in your AppDelegate.
- (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)notif {
// Handle the notification here
}

EmptyStack
- 51,274
- 23
- 147
- 178