2011-02-18 1 views

Répondre

1

Vous devez coder comme suit,

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  
UILocalNotification *localNotif = [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey]; 
    if (localNotif) 
    { 
     //code for opening mail composer 
    } 



-(void) application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification 
    { 
      //code for opening mail composer 
    } 
Questions connexes