tel的回调网址:

时间:2012-05-29 09:58:14

标签: iphone telephony

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

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

1 个答案:

答案 0 :(得分: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]];