iOS APP内拨打电话

方式一

// 自带跳提示的 呼叫

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:%@“,@“188****1889”]]];

iOS APP内拨打电话_第1张图片

执行即会自动跳出 Alert 提示取消还是呼叫电话。点击呼叫立即呼叫电话啦 

方式二 

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

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

[self.view addSubview:callWebview];

此方式 不会跳提示 会直接拨打电话 所以 此方式建议 自定义提示

你可能感兴趣的:(iOS APP内拨打电话)