AVSpeechSynthesizer代表不在iOS 11中调用

时间:2017-10-13 13:51:21

标签: ios iphone ios11 avspeechsynthesizer

这是我的文字转语音代码。 iOS 11以下的一切工作正常。但是在iOS 11中没有调用委托方法。

AVSpeechSynthesizerDelegate已准确设置。 (因为它在iOS 11下工作)

点击按钮

AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init];
synthesizer.delegate = self;

AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:stringToSpeech];
[utterance setRate:AVSpeechUtteranceDefaultSpeechRate];
[utterance setPitchMultiplier:1];
[utterance setVolume:1];
utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-US"];
[synthesizer speakUtterance:utterance];

这些是我实施的委托方法。

-(void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didFinishSpeechUtterance:(AVSpeechUtterance *)utterance {
    NSLog(@"finished");
}

-(void)speechSynthesizer:(AVSpeechSynthesizer *)synthesizer didStartSpeechUtterance:(AVSpeechUtterance *)utterance{
    NSLog(@"Started");
}

有人面对这个问题吗? 任何帮助将不胜感激。

我在iOS 11.0.3上测试,使用Xcode 9.0

1 个答案:

答案 0 :(得分:7)

您的synthesizer对象必须是可以使用的属性:)。

制作AVSpeechSynthesizer实例,synthesizer就像这样:

@property (strong, nonatomic) AVSpeechSynthesizer *synthesizer;

或者像readwrite一样。

@property (readwrite, strong, nonatomic) AVSpeechSynthesizer *synthesizer;

让我知道这是否有效。