Something has changed in the text-to-speach API. Cannot get any [AVSpeechSynthesisVoice speechVoices].
The "old way" [AVSpeechSynthesisVoice voiceWithLanguage:voiceLangCode] does not work anymore.
There is a new method :
+ (nullable AVSpeechSynthesisVoice *)voiceWithIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(9_0);
however its only works with en-US Alex's voice:
AVF_EXPORT NSString *const AVSpeechSynthesisVoiceIdentifierAlex NS_AVAILABLE_IOS(9_0);
Any idea how i could use different language voices like before?