Problem: In iOS 7.x und iOS 8.x funktioniert dieser Code gut, aber in iOS 9.x wird die Sprachrate langsamer als im Vergleich zur Rate der Sprache in iOS 7 & 8.AVSpeechSynthesizer Äußerungsrate variiert in iOS7 & iOS 9
self.synthesizer = [[AVSpeechSynthesizer alloc] init];
self.synthesizer.delegate = self;
AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc] initWithString:[NSString stringWithFormat:@"Hey %@, please choose places to explore or select excursions to see our custom crafted deals",[defaults objectForKey:@"USERNAME"]]];
utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-US"];
utterance.rate = 0.10;
[self.synthesizer speakUtterance:utterance];
Mögliche Duplikat [iOS9 AVSpeechUtterance Rate für AVSpeechSynthesizer Ausgabe] tun (http://stackoverflow.com/questions/32761786/ios9-avspeechutterance-rate-for -avspeechsynthesizer-issue) – Gregarious