美文网首页
iOS12系统下NotificationService AVSp

iOS12系统下NotificationService AVSp

作者: 向晚forever | 来源:发表于2018-10-10 13:15 被阅读278次

首先做类似支付宝的语音播报,必须在iOS10+,走NotificationService才能播报。

{
  "aps" : {
    "alert" : "250元",
    "sound":"default",
    "mutable-content":1
  }

"mutable-content":1是必须要的,否则不会走下面的方法:

- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {}

如果有系统声音设置
self.bestAttemptContent.sound = nil ;
关于iOS12系统AVSpeechSynthesisVoice方法不播放的原因,请集成第三方语音。

相关文章

网友评论

      本文标题:iOS12系统下NotificationService AVSp

      本文链接:https://www.haomeiwen.com/subject/buepaftx.html