iphone - when application become active then how we load the another view or invoke the root view controller -
i have load mailcomposer on reciving localnotification possible??
you should code follows,
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions { uilocalnotification *localnotif = [launchoptions objectforkey:uiapplicationlaunchoptionslocalnotificationkey]; if (localnotif) { //code opening mail composer } -(void) application:(uiapplication *)application didreceivelocalnotification:(uilocalnotification *)notification { //code opening mail composer }
Comments
Post a Comment