4

我想在telprompt://调用后使用方案返回到我的应用程序。但我有一个问题。

如果对方忙,我会看到两个按钮:重拨和取消。因此,如果我按取消,我将不会返回我的应用程序。有什么办法可以处理吗?

PS 不在telprompt://私有 API 中?

4

2 回答 2

1

在这里您可以使用 WebView 并在其上加载请求。

 UIWebView *callWebview = [[UIWebView alloc] init];   
 NSURL *telURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@", phoneNumber]
 [callWebview loadRequest:[NSURLRequest requestWithURL:telURL]];

我敢肯定它会与 Charm 一起使用.....

于 2012-11-13T14:37:14.227 回答
0

我认为你需要:

[[UIApplication sharedApplication] openURL: [NSURL URLWithString:[NSString stringWithFormat:@"telprompt:%@",num]]];
于 2013-11-15T03:10:29.587 回答