开始制作一个应用程序,无法在网上找到任何东西,但这可能是iOS ....我想制作一个简单的应用程序,可以说出我选择的大声字然后用户可以尝试拼写这个词。
答案 0 :(得分:1)
This blog post详细描述了如何在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];