-1

我正在制作一个 Xcode 应用程序,我需要能够按下按钮并阅读一些文本。如果有人可以向我提供我需要在 IBAction 按钮的括号内使用的代码行,那将不胜感激。谢谢你。

4

1 回答 1

7

试试这个:

你需要一个财产

@property(strong) NSSpeechSynthesizer *speechSynth;

在您的 init 方法中:

_speechSynth = [[NSSpeechSynthesizer alloc] initWithVoice:nil];

开始演讲:

- (IBAction)sayIt:(id)sender{
    NSString *string = [self.textField stringValue];
    // Is the string zero-length?
    if ([string length] == 0) {
        NSLog(@"string from %@ is of zero-length", self.textField);
        return;
    }
    [self.speechSynth startSpeakingString:string];
    NSLog(@"Have started to say: %@", string);
}

停止发言:

- (IBAction)stopIt:(id)sender {
    NSLog(@"stopping");
    [self.speechSynth stopSpeaking];
}
于 2013-03-17T07:24:16.203 回答