AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init]; Nsstring *mystring = [Nsstring stringWithFormat:@"Talk String Here %@",myObject.name]; AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:mystring]; [utterance setRate:AVSpeechUtteranceMinimumSpeechRate]; [utterance setVolume:1]; [synthesizer speakUtterance:utterance];解决方法 @ tmr的帖子 here为我解决了这个问题:
[[AVAudioSession sharedInstance] setcategory:AVAudioSessioncategoryPlayAndRecord withOptions:AVAudioSessioncategoryOptionDefaultToSpeaker error:nil];总结
以上是内存溢出为你收集整理的ios – AVSpeechUtterance最大音量非常安静且速度非常快全部内容,希望文章能够帮你解决ios – AVSpeechUtterance最大音量非常安静且速度非常快所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)