I need return to app after call. Or i need make phone call from background.
NSURL *url = [NSURL URLWithString:@"tel://%@",phoneNumber];
if([[UIApplication sharedApplication]canOpenURL:url]) {
[[UIApplication sharedApplication]openURL:url];
}
But i have not idea how to do this.