callEventHandler...
, apple dev, currentCalls , .
, ( ):
- (void)viewDidLoad {
[super viewDidLoad];
_timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(phoneDetection) userInfo:nil repeats:YES];
}
- (void)phoneDetection {
_callCenter = [[CTCallCenter alloc] init];
[_callCenter setCallEventHandler:^(CTCall *call) {
NSLog(@"Call detected");
}];
NSLog(@"%@", _callCenter.currentCalls);
}