ios – AVSpeechUtterance最大音量非常安静且速度非常快

前端之家收集整理的这篇文章主要介绍了ios – AVSpeechUtterance最大音量非常安静且速度非常快前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在为我的应用程序添加语音提示并在iOS 7中测试AVSpeechUtterance,但默认语音速率非常快.最低语速更容易理解.但最大音量值1太安静了!我在iPhone 4上测试了它,音量一直在变高.某些东西一定是错的,否则它将如何可用. @H_404_2@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为我解决了这个问题: @H_404_2@[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker error:nil];

猜你在找的iOS相关文章