こんにちは、iOS 8 で AvSpeechSynthesizer を試した人はいますか? Xcode 6でクイックアプリを実行しましたが、音声が出ません。Xcode 5でも同じことを実行しましたが、問題なく動作しました。
http://nshipster.com/avspeechsynthesizer/のサンプル コード
NSString *string = @"Hello, World!";
AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc] initWithString:string];
utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-US"];
AVSpeechSynthesizer *speechSynthesizer = [[AVSpeechSynthesizer alloc] init];
[speechSynthesizer speakUtterance:utterance];
Xcode6 のバグ?
==編集=== iOS 8 simのバグ/問題のように見えます.Xcode6のiOS7.1 Simは正常に動作します..