• iOS 拨打电话


    下面是拨打电话的代码,按钮的触发事件

    @property (nonatomic ,strong) UIAlertView *alertView;

    - (IBAction)CallphoneBtn:(id)sender {

    //用户体验

        _alertView=[[UIAlertView alloc]initWithTitle:@"确定需要打电话?" message:nil delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];

        [_alertView show];

    }

    //alertView代理,别忘记遵守协议

    - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

    {

        if(buttonIndex==0)

        {

             // [_alertView cancelButtonIndex];

        }

        else

        {

    //这个是关键代码

            NSString *number=@"132xxxxxxxx";

            [[UIApplication sharedApplication]openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",number]]];

       }

    }

  • 相关阅读:
    AESUtil_1
    ELK配置
    Centos7上安装docker
    Excel大批量数据导出
    Redis5.0.6安装完整步骤
    idea远程打断点
    [HNOI2016] 序列
    [TJOI2017] 异或和
    洛谷 P4933 大师
    洛谷 P1950 长方形_NOI导刊2009提高(2)
  • 原文地址:https://www.cnblogs.com/liaolijun/p/4565671.html
Copyright © 2020-2023  润新知