Replace deprecated UNNotificationPresentationOptions.alert with .banner and .list

This commit is contained in:
2023-03-30 13:59:05 -04:00
parent 5a238502cb
commit 3383b7b7a6

View File

@@ -53,7 +53,7 @@ class AppDelegate: NSObject, UIApplicationDelegate, UNUserNotificationCenterDele
// Handle the notification in the foreground state
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
// Display the notification in the foreground
completionHandler([.alert, .sound, .badge])
completionHandler([.banner, .list, .sound, .badge])
}
}