how to handle the application on outgoing and incoming calls in ios phone phonegap programming?

885 Views Asked by At

Can any one suggest me how to handle a application in iOS phonegap if any outgoing calls and incoming phone calls. Actually I m new to phone-gap based applications

Currently I m developing an application to track the location in background. If any incoming or outgoing call appears ,I need to stop my application background location tracking(incoming/outgoing call) and start the location tracking after call ends.

I have referred this link: How detect incoming and outgoing call end state? iphone

   [[NSNotificationCenter defaultCenter] addObserver:self  selector:@selector(callReceived:) name:CTCallStateIncoming object:nil];

   [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callEnded:) name:CTCallStateDisconnected object:nil];

   [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callConnected:) name:CTCallStateConnected object:nil];
1

There are 1 best solutions below

3
On BEST ANSWER

Adding core telephony framework and its delegate methods solved my requirement.

   //Initialize the plugin
  - (void)pluginInitialize
   {
   self.callCenter = [[CTCallCenter alloc] init];
   [self handleCall];

   [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callReceived:) name:CTCallStateIncoming object:nil];
   [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callEnded:) name:CTCallStateDisconnected object:nil];
   [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callConnected:) name:CTCallStateConnected object:nil];
    }


 //handle calls
 -(void)handleCall
   {
    self.callCenter.callEventHandler = ^(CTCall *call){

    if ([call.callState isEqualToString: CTCallStateConnected])
    {
        NSLog(@"call CTCallStateConnected");//Background task stopped
    }
    else if ([call.callState isEqualToString: CTCallStateDialing])
    {
        NSLog(@"call CTCallStateDialing");
    }
    else if ([call.callState isEqualToString: CTCallStateDisconnected])
    {
        NSLog(@"call CTCallStateDisconnected");//Background task started
    }
    else if ([call.callState isEqualToString: CTCallStateIncoming])
    {
        NSLog(@"call CTCallStateIncoming");
    }
    else  {
        NSLog(@"call NO");
    }
  };
 }