美文网首页iOS笔记
[iOS]AVSpeechSynthesizer语音合成

[iOS]AVSpeechSynthesizer语音合成

作者: 德山_ | 来源:发表于2017-06-23 16:41 被阅读14次
    #import <AVFoundation/AVFoundation.h>
    
    // 初始化方法
    AVSpeechSynthesizer *speech = [[AVSpeechSynthesizer alloc]init];
    
    // 设置内容
    AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:
                                    @"红鲤鱼与绿鲤鱼与驴"];
    // 设置语音类型
    utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"zh-CN"];
    
    // 语速
    utterance.rate = 0.5;
    
    // 开始朗读
    [speech speakUtterance:utterance];```

    相关文章

      网友评论

        本文标题:[iOS]AVSpeechSynthesizer语音合成

        本文链接:https://www.haomeiwen.com/subject/yobccxtx.html