I played with adding speech signals to my application and tested AVSpeechUtterance in iOS 7, but the default speech frequency is REALLY fast. The minimum speech speed is much clearer. But the maximum volume value of 1 is equivalent to calm! I tested it on my iPhone 4 and the volume was completely flipped. Something must be wrong, or how it could be used at all.
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];
source
share