美文网首页
打电话的三种方式对比

打电话的三种方式对比

作者: DDY | 来源:发表于2016-12-29 09:28 被阅读81次

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

[[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];

相关文章

网友评论

      本文标题:打电话的三种方式对比

      本文链接:https://www.haomeiwen.com/subject/qtvuvttx.html