Reputation: 13
How can I detect when an user click on a local notification and open my app?
Upvotes: 1
Views: 82
Reputation: 917
Your app will be automatically launched : you don't have to do anything in your app.
Upvotes: 0
Reputation: 6918
Use this method in your app delegate:
-(void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
}
Upvotes: 1