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];
Adding core telephony framework and its delegate methods solved my requirement.