iOS 拨打电话的三种代码方式

iOS 三种拨打电话的代码

这三种代码 都是会有提示的
1 使用UIWebView 拨打电话

 
NSString * telStr = [NSString stringWithFormat:@"tel:010-xxxx-xxxx ] ;
UIWebView * webView = [[UIWebView alloc] init ] ;
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:telStr]]];
[self.view addSubView: webView ] ;

2 使用 UIApplicationopenURL 方法

 
NSString * telStr = [NSString stringWithFormat:@"tel:010-xxxx-xxxx ] ;
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: telStr] options:@{} completionHandler:nil ] ;

3 使用UIApplicationopenURL方法,只不过是将 tel 换成 telprompt

 
NSString * telprompt = @"telprompt://010-xxxx-xxxx" ;
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: telprompt] options:@{} completionHandler:nil ] ;

你可能感兴趣的:(iOS)