应用在前台运行时,如何确定用户是否忽略了通知的横幅?
我确实实现了委托人的方法userNotificationCenter: willPresentNotification:withCompletionHandler:
,并且通知的标语正常显示:
- (void)userNotificationCenter: (UNUserNotificationCenter *)center
willPresentNotification: (UNNotification *)notification
withCompletionHandler: (nonnull void (^)(UNNotificationPresentationOptions))completionHandler {
completionHandler(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge);
}
点击横幅时,我可以通过方法userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:
处理一个动作。
我的问题是我需要在用户忽略横幅时触发一个动作。
我该如何处理?