在其中一个表视图委托方法中,我正在根据某些条件访问一些字符串,我想使用 ESpeak 引擎说出这些字符串。在日志中,它给出了所有匹配的字符串……但是 ESpeak 引擎只接受最后一个字符串(即,它只是拼写最后一个字符串。)
如何拼写所有的字符串..
这是我的代码..
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)celle forRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"Final Speak Child List:%@",[stringComponentsForArray objectAtIndex:1]);
[engine speak:[stringComponentsForArray objectAtIndex:1]];
}