前台的iOS推送通知-检测通知横幅何时被用户忽略

时间:2019-03-10 00:09:54

标签: ios push-notification

应用在前台运行时,如何确定用户是否忽略了通知的横幅?

我确实实现了委托人的方法userNotificationCenter: willPresentNotification:withCompletionHandler:,并且通知的标语正常显示:

- (void)userNotificationCenter: (UNUserNotificationCenter *)center
       willPresentNotification: (UNNotification *)notification
         withCompletionHandler: (nonnull void (^)(UNNotificationPresentationOptions))completionHandler {

    completionHandler(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge);
}

点击横幅时,我可以通过方法userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:处理一个动作。

我的问题是我需要在用户忽略横幅时触发一个动作

我该如何处理?

0 个答案:

没有答案