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

[iOS]AVSpeechSynthesizer语音合成

时间:2017-06-19 17:45:28      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:bsp   rate   ice   ati   语音   nbsp   div   ios   ring   

 1 #import <AVFoundation/AVFoundation.h>
 2 
 3 // 初始化方法
 4 AVSpeechSynthesizer *speech = [[AVSpeechSynthesizer alloc]init];
 5 
 6 // 设置内容
 7 AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:
 8                                 @"红鲤鱼与绿鲤鱼与驴"];
 9 // 设置语音类型
10 utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"zh-CN"];
11 
12 // 语速
13 utterance.rate = 0.5;
14 
15 // 开始朗读
16 [speech speakUtterance:utterance];

 

[iOS]AVSpeechSynthesizer语音合成

标签:bsp   rate   ice   ati   语音   nbsp   div   ios   ring   

原文地址:http://www.cnblogs.com/EverNight/p/7049685.html

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