码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发——语音播报

时间:2016-07-20 19:40:57      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:

闲来无事,突然想要听一下苹果的语音功能,然后就自己查资料搞一下。

在iOS7之前,想要实现语音播报文字内容,可能需要第三方资源库来实现。现在在iOS7上,系统为我们提供了语音播报文字的功能,我们不仅可以播报英语内容,也可以播报汉语文字,所以对于开发者来说真是个福音。

需要导入AVFoundattion:

当前的设备判断

  NSString *warnmsg = @"今天天气真好,工作加油";

  if ([[[UIDevice  currentDevice] systemVersion]integerValue ]>=7.0) {

  //AVSpeechUtterance 

AVSpeechUtterance是设置需要播报的文字内容-warnmsg、语音速率-rate以及语言种类-preferredLang,而AVSpeechSynthesizer就是开始同步播放的类。

        AVSpeechUtterance *utterance =[AVSpeechUtterance  speechUtteranceWithString:warnmsg];

//速率

        utterance.rate *= 0.8;

//同步语音

          AVSpeechSynthesizer *synth = [[AVSpeechSynthesizer alloc] init];

        /**

         *  获取当前系统语音

         */

        NSString *preferredLang = @"";

//语言的设置

        preferredLang = @"zh-HK";

        AVSpeechSynthesisVoice *voice =[AVSpeechSynthesisVoice  voiceWithLanguage:[NSString stringWithFormat:@"%@",preferredLang]];

        utterance.voice = voice;

        [synth  speakUtterance:utterance];

    }

 

iOS开发——语音播报

标签:

原文地址:http://www.cnblogs.com/qinxiaoguang/p/5689366.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!