iOS打电话

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS打电话相关的知识,希望对你有一定的参考价值。

打电话

1,这种方法,拨打完电话回不到原来的应用,会停留在通讯录里,而且是直接拨打,不弹出提示
NSMutableString * str=[[NSMutableString allocinitWithFormat:@"tel:%@",@"186xxxx9999"];
    
//            NSLog(@"str======%@",str);
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
    

2,这种方法,打完电话后还会回到原来的程序,也会弹出提示,推荐这种
NSMutableString * str=[[NSMutableString allocinitWithFormat:@"tel:%@",@"186xxxx9999"];
    
UIWebView * callWebview = [[UIWebView allocinit];
    [callWebview 
loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:str]]];
    [
self.view addSubview:callWebview];
    [callWebview 
release];
    [str 
release];

3,这种方法也会回去到原来的程序里(注意这里的telprompt),也会弹出提示
NSMutableString * str=[[NSMutableString allocinitWithFormat:@"telprompt://%@",@"186xxxx9999"];
    
//            NSLog(@"str======%@",str);
    [[UIApplication sharedApplicationopenURL:[NSURL URLWithString:str]]



本文出自 “ZhuoKing” 博客,转载请与作者联系!

以上是关于iOS打电话的主要内容,如果未能解决你的问题,请参考以下文章

iOS H5嵌套打电话功能实现

ios打电话

iOS打电话发短信

iOS开发中,调用打电话,发短信,打开网址等手机基础功能

iOS 之(调用系统打电话功能)

IOS 开发,调用打电话,发短信,打开网址