iOS 中文字转语音(ios7)

转的语音效果太生硬了,感觉不是很好!上代码吧~~
导入AVFoundation框架
引入头文件 #import
       AVSpeechSynthesizer *av = [[AVSpeechSynthesizer alloc]init];
       AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc]initWithString:@"输入要转换的文字"];
       utterance.rate = AVSpeechUtteranceMinimum SpeechRate;
       [av speakUtterance:utterance];
       [utterance release];
       [av release];
简的设置了一下语速,详细看api吧~~

你可能感兴趣的:(iOS 中文字转语音(ios7))