My app has a scenario like when the user make a call and if the call ends, then it should return back to my app, rather than the native phone app. I was able to achieve this by using
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://123456789"]];
but this seems to happen only when the call is successful and ended in its own way or manually. but this is not returning to my app when the call fails. I am badly looking forward for a solution for this.