In one of the Table view delegate method I am accessing some strings based on some conditions and i want to speak those strings using ESpeak Engine..In the Log it is giving all the matched strings...but ESpeak Engine is only taking last string (i.e., it is only spelling last string.)
How to make to spell all the strings..
Here is my code..
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)celle forRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"Final Speak Child List:%@",[stringComponentsForArray objectAtIndex:1]);
[engine speak:[stringComponentsForArray objectAtIndex:1]];
}