ios中拨打电话的实现
- - (void)callAction{
- NSString *number = @"";// 此处读入电话号码
- // NSString *num = [[NSString alloc]initWithFormat:@"tel://%@",number]; //number为号码字符串 如果使用这个方法结束电话之后会进入联系人列表
- NSString *num = [[NSString alloc]initWithFormat:@"telprompt://%@",number]; //而这个方法则打电话前先弹框 是否打电话 然后打完电话之后回到程序中 网上说这个方法可能不合法 无法通过审核
- [[UIApplication sharedApplication] openURL:[NSURLURLWithString:num]]; //拨号
- }
- UIButton *btnPhone = [[UIButtonbuttonWithType:UIButtonTypeRoundedRect]retain];
- btnPhone.frame =CGRectMake(280,10,30,30);
- [btnPhone setBackgroundColor:[UIColor redColor]];
- // 点击拨号按钮直接拨号
- [btnPhone addTarget:self action:@selector(callAction)forControlEvents:UIControlEventTouchUpInside];
- [self.window addSubview:btnPhone];
- -(void)CallPhone{
- NSString *phoneNum = @"";// 电话号码
- NSURL *phoneURL = [NSURL URLWithString:[NSStringstringWithFormat:@"tel:%@",phoneNum]];
- if ( !phoneCallWebView ) {
- phoneCallWebView = [[UIWebView alloc]initWithFrame:CGRectZero];// 这个webView只是一个后台的容易 不需要add到页面上来 效果跟方法二一样 但是这个方法是合法的
- }
- [phoneCallWebView loadRequest:[NSURLRequestrequestWithURL:phoneURL]];
- }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。