I have heard of AVFoundation framework (doesn't work), but is there a way to convert a textfield to an audio file.
I would love to know if there is an API for it.
Your help would you be really appreciated, thank you.
I have heard of AVFoundation framework (doesn't work), but is there a way to convert a textfield to an audio file.
I would love to know if there is an API for it.
Your help would you be really appreciated, thank you.
AVSpeechUtterance *utterance = [AVSpeechUtterance
speechUtteranceWithString:@"Hello world"];
AVSpeechSynthesizer *synth = [[AVSpeechSynthesizer alloc] init];
[synth speakUtterance:utterance];
instead of @"Hello World" use TextField.text