拨打完电话回不到原来的应用,会停留在通讯录里,而且是直接拨打,不弹出提示
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://1888888888"]];
打完电话后还会回到原来的程序,也会弹出提示,推荐使用
UIWebView *callWebView = [[UIWebView alloc] initWithFrame:CGRectZero];
[callWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"tel://1888888888"]]];
[self.view addSubView:callWebView]; // 记得添加到View上
这种方法也会回去到原来的程序里(注意这里的telprompt),也会弹出提示,可能为私有方法
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://1888888888"]];