My iPhone application has different view controllers and I would like to invoke them based on the push notification received from backend. For example if I have view controllers "A" and "B", I would launch "A" when user receives a message regarding some activity in "A" (e.g. Please complete the activity in "A") and would launch screen "B" if user receives "Please complete the activity in "B"). Can anybody tell me if this is possible in iPhone and if so how?
|
|
|
Sure. Your app delegate is notified of a push notification either through the In both cases, the dictionary that is passed to you as a parameter of either method contains the notification's payload/contents. You can use it to identify which type of notification your app received and then act accordingly by displaying the appropriate view controller. |
|||||
|