
hello all. how we can use text to speech in our application in iphone??

hello if you want to use text to speech synthesizer then you have to import voiceService.framework and the write some code like this
NSObject *v = [[NSClassFromString(@"VSSpeechSynthesizer") alloc] init]; [v startSpeakingString:@"All your base are belong to us"]; [v release];

Here is the code:
NSObject *v = [[NSClassFromString(@"VSSpeechSynthesizer") alloc] init]; [v startSpeakingString:@"All your base are belong to us"]; [v release];
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.