打完电话后回到我的应用程序

时间:2012-06-06 09:54:27

标签: objective-c ios

我的应用程序拨打电话后,我想返回我的应用程序。当用户现在在通话屏幕中点击“结束”时,他总是看到手机应用。如何强制app返回原来的应用程序?

我使用以下方式拨打电话:

NSString *phoneURLString = [NSString stringWithFormat:@"tel:%@", phoneNumber];
NSURL *phoneURL = [NSURL URLWithString:phoneURLString];
[[UIApplication sharedApplication] openURL:phoneURL]];

3 个答案:

答案 0 :(得分:2)

试试这个.......

 UIWebView *callWebview = [[UIWebView alloc] init];   
    NSURL *telURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@", phoneNumber]
   [callWebview loadRequest:[NSURLRequest requestWithURL:telURL]];

答案 1 :(得分:1)

您可以使用以下代码在通过应用程序拨打电话后返回应用

NSURL *url = [NSURL URLWithString:@"telprompt://phone number"];
[[UIApplication  sharedApplication] openURL:url];

答案 2 :(得分:0)

没有越狱,就没有办法做到这一点。