作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建 UNNotificationContentExtension 来显示一些自定义 UI。为此,我必须为 UNNotificationContentExtension 创建一些类别,并在安排通知时将其用作类别标识符。我还想通过这个丰富的通知添加一些操作,我已经用
完成了这些操作let category = UNNotificationCategory(identifier: notificationContentCategory, actions: [firstAction, secondAction, thirdAction, fourthAction], intentIdentifiers: [], options: [])
UNUserNotificationCenter.current().setNotificationCategories([category])
现在,根据新的应用程序要求,这些丰富的通知应该针对不同的条件有一组不同的操作。据我所知,没有办法将不同一组操作关联到相同 UNNotificationContentExtension。有没有办法将不同一组操作关联到相同 UNNotificationContentExtension ?
我仅处理本地通知。
最佳答案
找到了解决方案。我们可以在通知内容扩展的 info.plist 的 UNNotificationExtensionCategory 属性中添加标识符数组。在此添加所有标识符。
关于ios - 如何将相同的 UNNotificationContentExtension 与不同的 UNNotificationAction 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45430104/
我是一名优秀的程序员,十分优秀!