iOS 10 UNNotificationAction 从后台打开应用程序

iOS 10 UNNotificationAction Open App from Background

当用户收到通知并且我的应用程序处于后台时,如何打开我的应用程序?当然点击通知本身会打开应用程序,但是如何使用自定义通知操作来处理它?

我已经实现了 UNUserNotificationCenterDelegate 和 userNotificationCenter(_, didReceive, ...)

只需要一个可以打开我的应用程序并执行特定操作(例如转到特定视图)的代码

如果通知处理程序能够识别该通知并打开 iPhone 应用程序或 Apple Watch 应用程序(取决于点击操作的位置),那就太好了..

好的,我找到了解决方案。我们必须设置 UNNotificationActionOptions :)

UNNotificationActionOptions.foreground

一个Swift 3/4的例子(因为我不知道如何设置这个选项):重要的是UNNotificationAction.

UNNotificationActionOptions
let myAction = UNNotificationAction(identifier: "myActionIdentifier", title: "MyAction", options: [.foreground])