简单记录在程序中调用打电话的功能:
NSString *str=[NSString stringWithFormat:@"tel:%@“, @"13200000000"];
第一种方式:
UIWebView*callWebview = [[UIWebViewalloc]init];
[callWebviewloadRequest:[NSURLRequestrequestWithURL:[NSURLURLWithString:str]]];
[self.viewaddSubview:callWebview];
第二种方式:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str] options:nil completionHandler:^(BOOL success) {
}];