iOS应用程序被杀死时处理程序不能显示远程通知吗?
Posted
技术标签:
【中文标题】iOS应用程序被杀死时处理程序不能显示远程通知吗?【英文标题】:Can handler not show remote notification when iOS app is killed? 【发布时间】:2020-01-14 15:31:37 【问题描述】:我的要求是防止显示远程通知。 如果应用程序处于前台或后台,我可以通过以下方法处理此问题:
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any])
//logic hide notification here
public func userNotificationCenter(_ center: UNUserNotificationCenter,
willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void)
//logic hide notification here
当应用程序被杀死时,我正在尝试处理 UNNotificationServiceExtension 中的逻辑,但它不起作用:
override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void)
// logic hide notification here
我读过这篇文章:Is it possible to prevent a remote notification from being displayed? 上面说苹果不允许这样做,对吗?
【问题讨论】:
【参考方案1】:是的,没错。
您无法捕获远程通知并将其隐藏。不接收远程通知的最佳方法是拒绝许可。如果您的服务器发送远程通知,您可以将其配置为在您不需要时不发送通知。
另一种发送通知而不显示通知的方法是发送“静默通知”。它允许您接收通知、获取其内容并做您想做的事情(您只有 30 多岁)。我认为,您可以发送静默通知、检查内容并在需要时发送本地通知,但我不确定。
【讨论】:
【参考方案2】:您是否尝试完全删除通知? (前景和背景?) 如果是这种情况,那么您应该要求您的后端服务向您发送静默通知而不是正常通知。你不应该自己处理。
【讨论】:
以上是关于iOS应用程序被杀死时处理程序不能显示远程通知吗?的主要内容,如果未能解决你的问题,请参考以下文章
在快速远程通知中,有没有办法在应用程序被杀死时在横幅中显示与从服务器收到的消息不同的消息?