0

有一种情况,我需要检查用户是否应该根据他的位置接收推送通知。我知道这UNNotificationServiceExtension有助于我们拦截通知并有助于构建推送内容。但是,对于此类或其他任何地方,我们是否有可能通过检查用户的位置不显示推送通知?

这并不意味着我每次都想这样做。但只有当我的条件不满足时。在通知内容中,我正在获取用户的最后跟踪位置,我将使用该位置与用户的当前位置进行比较。
我经历了这个,但没有得到令人信服的答案。
注意:我不是在寻找静默推送通知解决方案。

4

1 回答 1

2

使用 UNUserNotificationCenter 您可以通过 id 取消单个通知。

UNUserNotificationCenter.current().removePendingNotificationRequests(withIdentifiers: [SomeID])

您必须实施 UNUserNotificationCenterDelegate 并实施 userNotificationCenter(_:willPresent)

就像是:

func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
        let identifier = notification.request.identifier
        let content = notification.request.content
        //your logic here
    }
于 2018-09-13T09:18:00.550 回答