2014-10-05 52 views
-2

開始製作應用程序,實際上無法在網上找到任何東西,但這可能與iOS ....我想做一個簡單的應用程序,可以說這個詞大聲說我已經選擇了,然後用戶可以嘗試拼寫這個詞。iOS在屏幕上大聲說出拼寫遊戲的文字

+0

谷歌的iOS遊戲的聲音? – chris 2014-10-05 10:15:56

回答

1

This blog post作者NSHipster詳細描述瞭如何在iOS上使用文本到語音API。

這裏所提供的示例代碼的摘錄:

NSString *string = @"Hello, World!"; 
AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc] initWithString:string]; 
utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-US"]; 

AVSpeechSynthesizer *speechSynthesizer = [[AVSpeechSynthesizer alloc] init]; 
[speechSynthesizer speakUtterance:utterance];