UILocalNotification iPhone specific download

I have my local notification, but when I click "View" to return to the application, in the application delegate, I try to load a specific view, but it will not take. Is this possible or not? He always returns to viewing the last view.

+1
source share
1 answer

When you click "View" in the notification, it returns you to your application, and your application shows everything that it showed earlier (if it was encrypted) or launched.

If you need to show a specific user interface in response to a notification, consider using the method <UIApplicationDelegate> -[<UIApplicationDelegate> application:didReceiveLocalNotification:]. In this method, you can check the notification and go to the corresponding interface.

+1
source

All Articles