Notifications locales : du nouveau avec iOS10
Hello,
un petit message car j'ai découvert y'a pas longtemps que les notifications locales peuvent être affichées maintenant (iOS10) même quand l'appli est en foreground.
Au passage, notez que UILocalNotification et consorts (les distantes aussi) sont deprecated sous iOS10.
Le code à ajouter :
@import UserNotifications;
@interface AppDelegate () <UNUserNotificationCenterDelegate>
@end
@implementation AppDelegate
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
willPresentNotification:(UNNotification *)notification
withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler
{
completionHandler(UNNotificationPresentationOptionAlert); // ou autre
}
@end
PS : je n'ai pas vérifié mais ça doit être aussi le cas pour les notifications distantes.
Connectez-vous ou Inscrivez-vous pour répondre.