I have the following delegate method for NSSpeechSynthesizer:
- (void) speechSynthesizer:(NSSpeechSynthesizer *)sender didFinishSpeaking:(BOOL) success {
NSLog(@"Finished correctly = %d", success);
[startButton setEnabled:YES];
[stopButton setEnabled:NO];
}
The parameter "success" is always NO, even though I heard everything perfectly. Is there a way to get more information and find out exactly what went wrong?