首页 > 移动平台 > 详细

iOS打电话功能

时间:2015-04-19 17:57:24      阅读:166      评论:0      收藏:0      [点我收藏+]

//第一种打电话的方式

- (IBAction)firstCall:(id)sender {

    NSString *phone = @"18749627117";

    if (phone != nil) {

        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",phone]]];//使用这个方法,打电话结束后会进入联系人列表

        //[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"telprompt://%@",phone]]];//使用这种方法在拨打电话前会先弹出框,询问是否打电话,然后打完电话之后回到主程序中,有人说这种方法可能不合法,无法通过审核

    }

}

//第二种打电话的方式

- (IBAction)secondCall:(id)sender {

    NSString *str = [NSString stringWithFormat:@"tel:%@",@"18749627117"];

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

    [callWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:str]]];

    [self.view addSubview:callWebView];//也可以不加到页面上

}


iOS打电话功能

原文:http://blog.csdn.net/huanghaiyan_123/article/details/45130441

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