在appstore app中没有使用siri语音的信息,所以我不明白为什么这个功能发布了。 无论如何我正在寻找易于使用的例子,可以使用appstore。
-(void)readTextWithSiri:(NSString*)text{
AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:text];
AVSpeechSynthesizer *syn = [[AVSpeechSynthesizer aloc] init];
utterance.rate = 0.032;
[syn speakUtterance:utterance];
}