I have a task to create application with push notification when the notification send at that time it redirect user to the different user page without login in the application.
I have to work with the local notification in which i have to create custom alertbox. in which i have to customize the button title and redirect it to the different pages without login view.
Is it possible to set the user custom uialertbox with custom name button. and it redirect to the uiview without loading first view for login.
Please help me. And provide some sample for it.if possible.
UILocalNotificationare handled by the system and are notUIAlertViews.You can set the button title for pushnotiftcaion or
UILocalNotificationby setting thealertActionproperty.The notification has a
userInfoproperty which you can fill with aNSDictionary, then in your appdelegate you can check theuserInfowhen you app launches and navigate the user to the view.