In my application when i click on a button a call is launched like this :
NSURL *url = [NSURL URLWithString:url_string];
[[UIApplication sharedApplication] openURL:url];
I want to be notified when user ended his call not simply come back to the application when call ended, how can i add a listener ?
any help is welcome