0

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

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

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

3 回答 3

2

尝试这个.......

 UIWebView *callWebview = [[UIWebView alloc] init];   
    NSURL *telURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@", phoneNumber]
   [callWebview loadRequest:[NSURLRequest requestWithURL:telURL]];
于 2012-06-06T10:00:57.420 回答
1

从您的应用拨打电话后,您可以使用以下代码返回您的应用

NSURL *url = [NSURL URLWithString:@"telprompt://phone number"];
[[UIApplication  sharedApplication] openURL:url];
于 2013-10-16T07:11:47.337 回答
0

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

于 2012-06-06T09:58:18.063 回答