查了很多地方的關(guān)于iOS程序撥打電話媳危,大都不全待笑,今天我總結(jié)了三種方法革骨,各有不同幔睬,拿來給大家分享我纪,希望給大家有所幫助1趟据,這種方法术健,撥打完電話回不到原來的應(yīng)用荞估,會停留在通訊錄里跪腹,而且是直接撥打冲茸,不彈出提示
<pre> NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"186xxxx6979"];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
</pre>
2,這種方法逗栽,打完電話后還會回到原來的程序祭陷,也會彈出提示兵志,推薦這種
<pre>
NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"186xxxx6979"];
UIWebView * callWebview = [[UIWebView alloc] init];
[callWebview loadRequest
:[NSURLRequest requestWithURL
:[NSURL URLWithString:str]]];
[self.view addSubview:callWebview];
[callWebview release];
[str release];
</pre>
3,這種方法也會回去到原來的程序里(注意這里的telprompt),也會彈出提示
<pre>
NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"telprompt://%@",@"186xxxx6979"];
// NSLog(@"str======%@",str);
</pre>
[[UIApplication sharedApplication] openURL:[NSURLURLWithString:str]]