Ios 将Siri设置为AVSpeechSynthesisVoice?

Ios 将Siri设置为AVSpeechSynthesisVoice?,ios,swift,xcode,text-to-speech,siri,Ios,Swift,Xcode,Text To Speech,Siri,在我的Swift代码中,我想将“AVSynthesisVoice”的语音设置为原始Siri语音,而不是您可以选择的其他语音。我只能用他们的名字来识别要使用的语音,但我可以用我的首选语言使用原始Siri语音吗 let u = AVSpeechUtterance(string: "Hello, I'm Siri!") u.voice = AVSpeechSynthesisVoice(TheSiriVoice) u.speak() iOS 11中发布的增强Siri语音不适用于AVSpeechSynt

在我的Swift代码中,我想将“AVSynthesisVoice”的语音设置为原始Siri语音,而不是您可以选择的其他语音。我只能用他们的名字来识别要使用的语音,但我可以用我的首选语言使用原始Siri语音吗

let u = AVSpeechUtterance(string: "Hello, I'm Siri!")
u.voice = AVSpeechSynthesisVoice(TheSiriVoice)
u.speak()

iOS 11中发布的增强Siri语音不适用于
AVSpeechSynthesizer

是否有旧版本的Siri语音?也许是iOS 10?