我目前面临一个问题,我需要能够根据随通知发送的信息更改 UNNotificationCategory 的操作。目前我的类别设置与此类似:
func registerNotificationSettings(){
let acceptAction = UNNotificationAction(identifier: "accept", title: "accept", options: [])
let denyAction = UNNotificationAction(identifier: "deny", title: "deny", options: [])
let acceptCategory = UNNotificationCategory(identifier: "2", actions: [acceptAction], intentIdentifiers: [], options: [])
let denyCategory = UNNotificationCategory(identifier: "1", actions: [denyAction], intentIdentifiers: [], options: [])
let center = UNUserNotificationCenter.current()
center.setNotificationCategories([acceptCategory, denyCategory])
center.requestAuthorization(options: [.alert, .badge, .sound]){
(granted, error) in
if (granted){
DispatchQueue.main.async {
UIApplication.shared.registerForRemoteNotifications()
}
}
}
}
此配置有效,但是,我需要能够根据用户设置更改每个类别的默认操作。例如,“denyAction”中的“deny”可能需要改为“reject”,或者“acceptAction”中的“accept”可能需要改为“confirm”。这些设置是我们为用户在应用程序中指定的变量而设置的,我无法知道他们可能会将其更改为什么。
目前,我们在每个通知的 userInfo 中都有发送“响应”字典的通知,但我不知道如何在收到通知时更改通知操作。我发现的唯一文档提前设置了这些操作。有谁知道这是否可能?