美文网首页
iOS 文字阅读、自动读英语、超级简单。

iOS 文字阅读、自动读英语、超级简单。

作者: JohnayXiao | 来源:发表于2018-03-07 15:10 被阅读32次
    #import <AVFoundation/AVFoundation.h>
    // 点击事件里读文字
    -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    
        AVSpeechSynthesizer *synthesize = [[AVSpeechSynthesizer alloc]init];
        AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc]initWithString:@"Will you marry me ?"];
        [synthesize speakUtterance:utterance];
    }
    
    

    相关文章

      网友评论

          本文标题:iOS 文字阅读、自动读英语、超级简单。

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