我希望我的应用程序进入后台并在通话结束时恢复

发布于 2024-10-21 12:58:50 字数 244 浏览 1 评论 0原文

我正在创建一个呼叫应用程序,我正在通过我的应用程序拨打电话,

NSURL *targetUrl = [NSURL URLWithString:@"tel:123456789"];
[[UIApplication sharedApplication] openURL:targetUrl];

但是通过这些,我的应用程序退出,我希望我的应用程序转到后台并在呼叫结束时恢复...请帮助...

问候

I am working on creating a call application, i am making a call from my app through

NSURL *targetUrl = [NSURL URLWithString:@"tel:123456789"];
[[UIApplication sharedApplication] openURL:targetUrl];

but by these ,my application quits , i want my application to go to background and resume on call end ...please help...

regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

走野 2024-10-28 12:58:50

您好,使用 telprompt url 而不是 tel 解决了问题

Hi Using telprompt url instead of tel solved the issue

北城半夏 2024-10-28 12:58:50

UIWebView *callWebview = [[UIWebView alloc] init];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"telprompt:%@", ph]];
[callWebview loadRequest:[NSURLRequest requestWithURL:url]];

UIWebView *callWebview = [[UIWebView alloc] init];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"telprompt:%@", ph]];
[callWebview loadRequest:[NSURLRequest requestWithURL:url]];

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文