我有这个Objective-C功能
-(void)makeFunnySounds{
NSSpeechSynthesizer *synth = [[NSSpeechSynthesizer alloc] initWithVoice:@"com.apple.speech.synthesis.voice.Alex"];
[synth startSpeakingString:@"Hello"];
}
我似乎无法让这个工作。音量调高。我可以在终端中执行say Hello
,这可行。
通过Xcode,我可以获得可用语音列表。我尝试使用[synth setVolume:1];
设置卷属性,但这也不起作用。
有什么想法吗?