修复系通知通知中心清除通知时,APP会打开通知弹框的问题。

This commit is contained in:
Fin 2024-11-18 09:54:54 +08:00
parent 1933a0cfdc
commit a2c11fb8a2

View File

@ -98,7 +98,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
actions.append(UNNotificationAction(identifier: "mute", title: NSLocalizedString("muteGroup1Hour"), options: UNNotificationActionOptions.foreground))
}
UNUserNotificationCenter.current().setNotificationCategories([
UNNotificationCategory(identifier: "myNotificationCategory", actions: actions, intentIdentifiers: [], options: .customDismissAction)
UNNotificationCategory(identifier: "myNotificationCategory", actions: actions, intentIdentifiers: [], options: [])
])
UNUserNotificationCenter.current().getNotificationSettings { settings in