iOS12系统下NotificationService AVSpeechSynthesisVoice不能播报

首先做类似支付宝的语音播报,必须在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 AVSpeechSynthesisVoice不能播报)