无弹窗提示,但不返回原应用,不建议采用
[[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];
网友评论