, iOS 10 UNUserNotifications , . , , .
[UNUserNotificationCenter currentNotificationCenter].delegate = yourDelegate;
...
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
willPresentNotification:(UNNotification *)notification
withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler {
completionHandler(UNNotificationPresentationOptionAlert);
}
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
didReceiveNotificationResponse:(UNNotificationResponse *)response
withCompletionHandler:(void (^)())completionHandler {
completionHandler();
}
, () application:didReceiveLocalNotification application:didReceiveRemoteNotification:fetchCompletionHandler, : UNUserNotificationCenter.
, (, content-available, alert, sound badge), application:didReceiveRemoteNotification:fetchCompletionHandler, .