我希望我的应用程序进入后台并在通话结束时恢复
我正在创建一个呼叫应用程序,我正在通过我的应用程序拨打电话,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您好,使用 telprompt url 而不是 tel 解决了问题
Hi Using telprompt url instead of tel solved the issue
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]];