我正在尝试打印出正在使用的单词"通过这个应用程序到控制台上,所以我可以将它存储在一个变量中供以后使用。功能是这样的,我试图在变量" word"中打印内容。我该怎么做呢?
- (void)speak:(NSString *)words {
if ([synth isSpeaking]) {
NSLog(words);
return;
}
AVSpeechUtterance *utterance =
[AVSpeechUtterance speechUtteranceWithString:words];
utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-US"];
utterance.rate = 0.75 * AVSpeechUtteranceDefaultSpeechRate;
[synth speakUtterance:utterance];
}
我试图在那里添加NSLog(单词),因为我认为这将是解决这个问题的方法。但是,我收到错误,但不起作用。我已经在上面的代码块中添加了它,只是为了清楚我所做的。
答案 0 :(得分:1)
NSLog(@"words :: %@", words);
或
在控制台选项卡中打印
po words