0

我正在使用tel:{phone-number}从我的应用程序发起呼叫。

我想知道是否可以为我的应用程序设置回调 url,以便一旦通话结束,我的应用程序就会再次启动(恢复)。

4

1 回答 1

2

不确定是否使用回调,但您可以使用 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]];
于 2012-05-29T12:00:15.883 回答