我正在使用tel:{phone-number}
从我的应用程序发起呼叫。
我想知道我是否可以为我的应用程序设置一个回调网址,以便一旦通话结束我的应用程序再次启动(恢复)。
答案 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]];