I want to do specific job when app notify means instead of show alert run specific function
is it possible ?
I want to do specific job when app notify means instead of show alert run specific function
is it possible ?
In a word: No. Local notifications are intended to alert the user at a specific time. They only way to run code in your application based on a notification is if the user interacts with the notification in such a way that starts your app, usually by clicking the action (or "view") button.
More details can be found under "Handling Local and Remote Notifications" in the Local and Push Notification Programming Guide.