从后端传递动态操作标题时如何处理iOS UNNotificationCategory

时间:2019-06-22 12:13:34

标签: ios swift unusernotificationcenter actionable-notification

我正在使用可行的通知。以下数据来自后端:

  1. notificationId(字符串)
  2. 通知标题,正文
  3. 两个动态标题显示操作按钮

我正在像这样注册针对notificationId的操作:

  let notificationCategory = UNNotificationCategory (
        identifier : notificationId,
        actions : [actionPositive, actionNegative],
        intentIdentifiers : [],
        options : []
    )
    UNUserNotificationCenter.current ()
    .setNotificationCategories ([notificationCategory])

如何处理多个通知类别,因为 setNotificationCategories()取消注册所有现有类别以注册新类别(即被新类别覆盖)。

我在显示带有不同动态动作的通知时遇到了问题。我发现没有一个博客/代码可以做到这一点。

0 个答案:

没有答案