hi I used this UNUserNotificationCenterDelegate for avoiding alert notification while app is in foreground with this function
-(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler API_AVAILABLE(ios(10.0)){
completionHandler(UNNotificationPresentationOptionAlert);
}
but I get notification with both option Alert & banner how can I remove alert while app is in foreground?