这是我的文字转语音代码。 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
答案 0 :(得分:7)
您的synthesizer
对象必须是可以使用的属性:)。
制作AVSpeechSynthesizer
实例,synthesizer
就像这样:
@property (strong, nonatomic) AVSpeechSynthesizer *synthesizer;
或者像readwrite一样。
@property (readwrite, strong, nonatomic) AVSpeechSynthesizer *synthesizer;
让我知道这是否有效。