首页 > 移动平台 > 详细

iOS 拨打电话的两种方式

时间:2014-09-04 00:15:37      阅读:240      评论:0      收藏:0      [点我收藏+]

第一种方式 

NSString *phone = @“88888888”


    if (phone != nil) {

        

        NSString *telUrl = [NSString stringWithFormat:@"telprompt:%@",phone];

        

        NSURL *url = [[NSURL alloc] initWithString:telUrl];

        

        [[UIApplication sharedApplication] openURL:url];

}


第二种方式 


UIWebView*callWebview =[[UIWebView alloc] init];

         NSString *telUrl = [NSString stringWithFormat:@"tel:%@",phone];

         NSURL *telURL =[NSURL URLWithString:telUrl];// 貌似tel:// 或者 tel: 都行

         [callWebview loadRequest:[NSURLRequest requestWithURL:telURL]];

         //记得添加到view

         [self.view addSubview:callWebview];


iOS 拨打电话的两种方式

原文:http://blog.csdn.net/chenhongyi_1992/article/details/39036097

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!