我正在使用可行的通知。以下数据来自后端:
我正在像这样注册针对notificationId的操作:
let notificationCategory = UNNotificationCategory (
identifier : notificationId,
actions : [actionPositive, actionNegative],
intentIdentifiers : [],
options : []
)
UNUserNotificationCenter.current ()
.setNotificationCategories ([notificationCategory])
如何处理多个通知类别,因为 setNotificationCategories()取消注册所有现有类别以注册新类别(即被新类别覆盖)。
我在显示带有不同动态动作的通知时遇到了问题。我发现没有一个博客/代码可以做到这一点。