打电话的三种方式对比

2016-12-29  本文已影响81人  DDY

无弹窗提示,但不返回原应用,不建议采用

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://10086"]];

有弹窗提示,能返回原应用,建议采用

UIWebView *webView = [[UIWebView alloc]init];        
NSURL *url = [NSURL URLWithString:@"tel://186*****2221"];        
[webView loadRequest:[NSURLRequest requestWithURL:url ]];        
[self.view addSubview:webView];

有弹窗提示,能返回原应用,但可能被拒,不建议采用

NSURL *url = [NSURL URLWithString:@"telprompt://10010"];
[[UIApplication sharedApplication] openURL:url];
上一篇 下一篇

猜你喜欢

热点阅读