码迷,mamicode.com
首页 > 其他好文 > 详细

拨号应用返回问题

时间:2014-06-30 22:09:43      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:blog   art   问题   for   io   应用   

- (void)CallOtherPartWithTelNumber:(NSString *)telNumber andType:(NSInteger)type
{
    
    switch (type) {
            
        case 1:
            //  可以返回应用
            telNumber = [NSString stringWithFormat:@"telprompt://%@", telNumber];
            LMLog(@"打电话调用最后组合好的号码:%@--<<", telNumber);
            
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:telNumber]];
            break;

            
        case 2:
            //  可以返回应用
            telNumber = [NSString stringWithFormat:@"tel:%@", telNumber];
            
            LMLog(@"打电话调用最后组合好的号码:%@--<<", telNumber);
            
            if (_webView == nil) {
                _webView = [[UIWebView alloc] initWithFrame:CGRectZero];
            }
            
            [_webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:telNumber]]];
            break;
            
        case 3:
            //  不能返回应用
            telNumber = [NSString stringWithFormat:@"tel://%@", telNumber];
            LMLog(@"打电话调用最后组合好的号码:%@--<<", telNumber);
            
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:telNumber]];
            break;
            
        default:
            break;
    }
    
}

  

拨号应用返回问题,布布扣,bubuko.com

拨号应用返回问题

标签:blog   art   问题   for   io   应用   

原文地址:http://www.cnblogs.com/wuwangchuxin/p/3816101.html

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