使用通知服务扩展振动 iphone 7,但它在后台无法与 iOS 12.1 一起使用
Posted
技术标签:
【中文标题】使用通知服务扩展振动 iphone 7,但它在后台无法与 iOS 12.1 一起使用【英文标题】:Vibrate iphone 7 with notification service extension, but it's not working with iOS 12.1 in background 【发布时间】:2018-12-06 11:56:45 【问题描述】:我使用通知服务扩展来振动设备两次,后台模式开启,下面的方法在ios 11
& 12.0.1
上有效,但在iOS 12.1
下无效
后台模式如下:
这里是代码:
override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void)
self.contentHandler = contentHandler
bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)
if let bestAttemptContent = bestAttemptContent
DispatchQueue.main.asyncAfter(deadline: .now() + 0.7)
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate)
DispatchQueue.main.asyncAfter(deadline: .now() + 1.4)
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate)
contentHandler(bestAttemptContent)
【问题讨论】:
不知道为什么它不起作用但考虑使用 UIFeedbackGenerator 来做同样的事情? 是的,但也可以试试这个“let Impact = UIImpactFeedbackGenerator()”@iOSer 也可以使用另一个 iphone 7 (ios 12.0) 【参考方案1】:我发现如果振动设置已关闭,它将无法正常工作。 (转到系统设置 \ 声音 => 响铃振动。)
如果您发送带有声音的推送通知,只有徽章,但没有文字提醒,如果您的手机未处于静音模式,它将播放声音,但如果它处于静音模式,它将不会播放声音.
现在,如果您向该通知添加文本警报,它会正常播放声音,即使在振动模式下也是如此。
可能需要围绕此进行更多测试。例如:如果您发送自定义键/值对,它会播放声音吗?不确定。
【讨论】:
很好的研究@AtulParmar,但通知包含所有的文字、警报、声音,正如我提到的,它适用于另一个 iphone 7 (iOS 12.0),问题仅在 iOS 12.1 中提出 您是否在应用功能的“背景模式”中检查了“音频、AirPlay 和画中画”功能***.com/questions/21173798/… 是的,它已添加@AtulParmar以上是关于使用通知服务扩展振动 iphone 7,但它在后台无法与 iOS 12.1 一起使用的主要内容,如果未能解决你的问题,请参考以下文章
在 iPhone 关闭时继续发出本地通知的声音/振动警报,就像在时钟应用程序中所做的那样