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

语音分享应用ios源码项目

时间:2015-03-18 12:28:26      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

该源码是语音分享应用源码,本demo使用了科大讯飞语音识别作为分享内容的输入方式,同时也支持手动键盘输入分享内容,限制分享内容文字不能超过180个字符,分享内容输入完成后可以直接分享,分享SDK使用的时友盟社会化分享。

- (IBAction)voiceRecognize:(id)sender {
    [self.textView resignFirstResponder];
     
    _result = @"";
     
    [_iflyRecognizerView start];
}
- (void)onResult:(NSArray *)resultArray isLast:(BOOL)isLast
{
    NSDictionary *dic = [resultArray objectAtIndex:0];
    NSMutableString *result = [NSMutableString new];
    NSLog(@"DIC:%@",dic);
    for (NSString *key in dic) {
        [result appendFormat:@"%@",key];
    }
    NSLog(@"result:%@",result);
     
    _result = [NSString stringWithFormat:@"%@%@",_result,result];
     
    if (isLast) {
        if (_result == nil||[_result isEqualToString:@""]) {
            UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"无法识别,请再说一遍" message:nil delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil];
            [alert show];
        }else{
            self.textView.text = _result;
        }
    }
}

  

语音分享应用ios源码项目

标签:

原文地址:http://blog.csdn.net/qibawangla/article/details/44407799

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