LocalNotification depuis appDelegate

Bonjour,


 


J'ai besoin d'un peu d'aide, en effet j'ai mis en place un système de notification push mais qui ne ce déclenche pas quand l'application est ouvert, alors j'aurai voulu lancé un LocalNotif (et non pas une UIAlerteView) quand un push arrive donc dans la méthode:



- (void)application:(UIApplication*)application didReceiveRemoteNotification:(NSDictionary*)userInfo{

if (application.applicationState == UIApplicationStateActive ) {
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.userInfo = userInfo;
localNotification.soundName = UILocalNotificationDefaultSoundName;
localNotification.alertBody = message;
[[UIApplication sharedApplication] presentLocalNotificationNow:localNotification];
}
}

But it doesn't work !!! 


 


Une idée ???


 


Merci,


Cordialement.


Réponses

Connectez-vous ou Inscrivez-vous pour répondre.