// 定义点击拨号按钮时的操作
- - (void)callAction{
- NSString *number = @"";
-
- NSString *num = [[NSString alloc]initWithFormat:@"telprompt://%@",number]; //而这个方法则打电话前先弹框 是否打电话 然后打完电话之后回到程序中 网上说这个方法可能不合法 无法通过审核
- [[UIApplication sharedApplication] openURL:[NSURLURLWithString:num]];
- }
// 下面的代码能在应用中添加一个电话按钮,点击即可拨打电话号码。对于 iPhone 开发者还是很有用的。
// 添加电话图标按钮
- UIButton *btnPhone = [[UIButtonbuttonWithType:UIButtonTypeRoundedRect]retain];
- btnPhone.frame =CGRectMake(280,10,30,30);
- [btnPhone setBackgroundColor:[UIColor redColor]];
- [btnPhone addTarget:self action:@selector(callAction)forControlEvents:UIControlEventTouchUpInside];
- [self.window addSubview:btnPhone];
// 第三种方式打电
- -(void)CallPhone{
- NSString *phoneNum = @"";
- NSURL *phoneURL = [NSURL URLWithString:[NSStringstringWithFormat:@"tel:%@",phoneNum]];
- if ( !phoneCallWebView ) {
- phoneCallWebView = [[UIWebView alloc]initWithFrame:CGRectZero];
- }
- [phoneCallWebView loadRequest:[NSURLRequestrequestWithURL:phoneURL]];
- }