2

我正在设置多个本地通知,并且我已将操作数设置为通知。像打盹、显示、关闭。

    func didReceive(_ response: UNNotificationResponse, completionHandler completion:  @escaping (UNNotificationContentExtensionResponseOption) -> Void) {


    let id = response.notification.request.identifier

       if response.actionIdentifier == "SnoozeId" {
        completion(UNNotificationContentExtensionResponseOption.dismiss)

           }}

在 didReceive - 如果动作是贪睡 - 执行贪睡,然后我关闭通知。当我解雇所有其他通知时,通知中心都消失了。如果我有两个 Notification A 和 B 。如果我长按并在 A 上执行贪睡。A 和 B 都从通知中心消失了。它应该只解雇 A。

4

2 回答 2

2

这是使用我的应用程序进行测试的结果。

为了更好地回答您的问题,请提供更多信息,例如 - 通知的 json 及其 userInfo(也许您正在对通知进行分组并一次全部关闭?)以及您调用的函数导致调用 didReceive(. ..)。

如果你打电话

self.extensionContext?.dismissNotificationContentExtension()

然后它关闭内容扩展但不关闭它。

如果你打电话:

self.extensionContext?.performNotificationDefaultAction()

然后它完成操作并关闭该单个通知(而不是其他通知)。但是,这会打开应用程序,您可能不想这样做。

我的代表是这样设置的:

func didReceive(_ response: UNNotificationResponse, completionHandler completion: @escaping (UNNotificationContentExtensionResponseOption) -> Void) {

    switch response.actionIdentifier {
    case UNNotificationDismissActionIdentifier:
        // Dismiss action stuff.
        completion(.dismiss)
        // To not dismiss
        // completion(.doNotDismiss)
    case UNNotificationDefaultActionIdentifier:
        // Default action stuff.
        // Let's say the user executed default action, we want to dismiss and forward the action.
        completion(.dismissAndForwardAction)
        break
    default:
        break
    }
}
于 2019-07-07T18:55:36.473 回答
0

Tia 可能会帮助您不久前已经回答了 它只是在目标 C 中回答了。我认为您想要查看的答案将通知存储在可变数组中,并在必要时从数组中删除通知。

于 2018-02-15T11:51:51.057 回答