How to use the speech synthesiser in iOS 7
New to iOS 7′s AVFoundation Framework is the speech synthesiser. It’s what Siri is using when he/she speaks to you. We can use this as well in our apps by passing a string into an AVSpeechUtterance object, which in turn we pass into an AVSpeechSynthesizer instance. Here’s how: – (IBAction)sayThis:(id)sender { AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer […]