博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios电话拨打进行监听电话状态
阅读量:6332 次
发布时间:2019-06-22

本文共 1618 字,大约阅读时间需要 5 分钟。

#import "ViewController.h"

#import <CoreTelephony/CTCallCenter.h>

#import <CoreTelephony/CTCall.h>

@interface ViewController ()

@property (nonatomic, strong) CTCallCenter *center;

@property (nonatomic, strong) UIWebView * callView;

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    UIButton * btn = [[UIButton alloc]initWithFrame:CGRectMake(50, 50, 150, 50)];

    btn.backgroundColor = [UIColor redColor];

    [btn setTitle:@"拨打电话" forState:UIControlStateNormal];

    [btn addTarget:self action:@selector(callBack) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btn];

    

    _center = [[CTCallCenter alloc] init];

    _center.callEventHandler = ^(CTCall *call) {

        if ([call.callState isEqualToString:CTCallStateDisconnected])

        {

            NSLog(@"挂断了电话咯Call has been disconnected");

        }

        else if ([call.callState isEqualToString:CTCallStateConnected])

        {

            NSLog(@"电话通了Call has just been connected");

        }

        else if([call.callState isEqualToString:CTCallStateIncoming])

        {

            NSLog(@"来电话了Call is incoming");

            

        }

        else if ([call.callState isEqualToString:CTCallStateDialing])

        {

            NSLog(@"正在播出电话call is dialing");

        }

        else

        {

            NSLog(@"嘛都没做Nothing is done");

        }

    };

    // Do any additional setup after loading the view, typically from a nib.

}

 

- (void)callBack{

    NSString * str=[[NSString alloc] initWithFormat:@"tel:%@",@"18310501773"];

    UIWebView * callWebview = [[UIWebView alloc] init];

    [callWebview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:str]]];

    [self.view addSubview:callWebview];

}

 

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

@end

 

转载地址:http://ikioa.baihongyu.com/

你可能感兴趣的文章
2014 腾讯软件测试开发二面,不用额外的变量来实现strlen
查看>>
253:Cube painting
查看>>
2016 年 Java 工具和技术的调查:IDEA 已超过
查看>>
Robot Framework学习笔记(十)------Selenium2Library库
查看>>
openssl 自建CA签发证书 网站https的ssl通信
查看>>
18、jmeter对数据库进行压力测试
查看>>
19、Linux命令对服务器内存进行监控
查看>>
springmvc中的字典表
查看>>
iterator的使用和封个问题
查看>>
mac 安装php mongo扩展,无法使用的解决办法
查看>>
hdu 4627 The Unsolvable Problem
查看>>
hdu 4268 Alice and Bob(STL贪心)
查看>>
MySql分库分表总结
查看>>
struts2文件上传,文件类型 allowedTypes
查看>>
看了这个才发现jQuery源代码不是那么晦涩【转载】
查看>>
phpstorm常用快捷键有哪些(图解归类)
查看>>
request对象
查看>>
关于ARP攻击的原理以及在Kali Linux环境下的实现
查看>>
collections模块
查看>>
day9作业
查看>>