我正在使用tel:{phone-number}
从我的应用程序发起呼叫。
我想知道是否可以为我的应用程序设置回调 url,以便一旦通话结束,我的应用程序就会再次启动(恢复)。
不确定是否使用回调,但您可以使用 UIWebView 在不离开应用的情况下拨打电话。在这种情况下escapedPhoneNumber
是一个NSString
包含您要呼叫的号码:
NSURL *telURL =
[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",
escapedPhoneNumber]];
// using a UIWebView here allows us to make a call without leaving the App
UIWebView * callWebview = [[UIWebView alloc] init];
[self.view addSubview:callWebview];
[callWebview loadRequest:[NSURLRequest requestWithURL:telURL]];