Case: GSM
While My ios App is Running in ForeGround after launch, i can Handle Incoming call By CoreTelephony framework Successfully .by Following code
CTCallCenter *callCenter = [[CTCallCenter alloc] init];
[callCenter setCallEventHandler:^(CTCall *call) {
NSDictionary *dict = [NSDictionary dictionaryWithObject:call.callState forKey:@"callState"];
[[NSNotificationCenter defaultCenter] postNotificationName:@"CTCallStateDidChange" object:self userInfo:dict];
NSLog(@"state changed on call: %@", call);
}];
How To handle :call in progress While launching
case :FaceTimeCall
-How to identify incoming FaceTime call ???????? .
- Following Application delegate is fired during incoming facetimecall -(void)applicationWillResignActive:(UIApplication *)application ,but how i will identify Which is due to facetimecall. because above method was fired @serviceprovidercall,sms and so on
Plz help to find Solution by vasu