拨打电话

// 拨打电话方法直接拨打电话,打完电话后留在通讯录(ios8好像是回到app)

NSMutableString * str=[[[NSMutableString allocinitWithFormat:@"tel:%@",phoneNumber] autorelease];

[[UIApplication sharedApplicationopenURL:[NSURL URLWithString:str]];

            

// 拨打电话方法再弹一次提示,打完电话后可以返回程序

            

UIWebView *callWebView = [[UIWebView allocinit];

NSURL *telURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",phoneNumber]];

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

[self.view addSubview:callWebView];

[callWebView release];

// 拨打电话方法3 会回去到原来的程序⾥里(注意这⾥里的telprompt),也会弹出提⽰,(审核通不过)
NSMutableString * str=[[NSMutableString allocinitWithFormat:@"telprompt://%@",@"186xxxx6979"
[[UIApplication sharedApplicationopenURL:[NSURL URLWithString:str]] 

// 如果电话号码是多个

        

        UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"电话下单"

                                                         message:nil

                                                        delegate:self

                                               cancelButtonTitle:@"取消"

                                               otherButtonTitles:nil];

        for (int i = 0; i < _phones.count; i++){

            [alert addButtonWithTitle:[_phones objectAtIndex:i]];

        }

        alert.tag = 111;

        [alert show];

        [alert release];


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值