//第一種打電話的方式
- (IBAction)firstCall:(id)sender {
NSString *phone = @"18749627117";
if (phone != nil) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",phone]]];//使用這個方法,打電話結束後會進入聯系人列表
//[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"telprompt://%@",phone]]];//使用這種方法在撥打電話前會先彈出框,詢問是否打電話,然後打完電話之後回到主程序中,有人說這種方法可能不合法,無法通過審核
}
}
//第二種打電話的方式
- (IBAction)secondCall:(id)sender {
NSString *str = [NSString stringWithFormat:@"tel:%@",@"18749627117"];
UIWebView *callWebView = [[UIWebView alloc]init];
[callWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:str]]];
[self.view addSubview:callWebView];//也可以不加到頁面上
}