热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

AVSpeechSynthesizer代表不在iOS11中调用

如何解决《AVSpeechSynthesizer代表不在iOS11中调用》经验,为你挑选了1个好方法。

这是我的文字转语音代码.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> Glenn..:

你的synthesizer对象必须是一个可以工作的属性:).

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

@property (strong, nonatomic) AVSpeechSynthesizer *synthesizer;

或者像readwrite一样.

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

让我知道这个是否奏效.


推荐阅读
author-avatar
撒药拿拉的唐小妄
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有