我的应用程序拨打电话后,我想返回我的应用程序。当用户现在在通话屏幕中点击“结束”时,他总是看到手机应用。如何强制app返回原来的应用程序?
我使用以下方式拨打电话:
NSString *phoneURLString = [NSString stringWithFormat:@"tel:%@", phoneNumber];
NSURL *phoneURL = [NSURL URLWithString:phoneURLString];
[[UIApplication sharedApplication] openURL:phoneURL]];
答案 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)
没有越狱,就没有办法做到这一点。