Does in iOS 7.0 AVSpeechSynthesizer have US male voice?

前端 未结 1 586
遥遥无期
遥遥无期 2021-02-08 05:17

Solution : It doesnot have US male voice


I have used AVSpeechSynthesizer framework for iOS7.0

1条回答
  •  梦谈多话
    2021-02-08 06:00

    iOS still doesn't provide US male voice. You can find all BCP-47 code of available voices

    for (AVSpeechSynthesisVoice *voice in [AVSpeechSynthesisVoice speechVoices]) {
    NSLog(@"%@", voice.language);
    }
    

    0 讨论(0)
提交回复
热议问题