Home › Forums › OpenEars plugins › Malloc_error when changing views in UINavigationController › Reply To: Malloc_error when changing views in UINavigationController
September 24, 2013 at 4:05 pm
#1018402
tbeagley
Participant
Not sure if it helps, but here’s the code where the speech is triggered:
//labels from JSON data for visual and audio
NSString *readLabels = [NSString stringWithFormat:@"%@%@%@",self.lblRead1.text,self.lblRead2.text,self.lblRead3.text];
//some lazy code based on the user's voice prefs (male or female)
if ([voiceIsSet isEqualToString:voiceIsEmma]) {
[self.fliteController sayWithNeatSpeech:readLabels withVoice:self.ealt];
} else {
[self.fliteController sayWithNeatSpeech:readLabels withVoice:self.william];
}