ios编程调用,而不必退出应用程序
有没有任何方式来编程调用,而无需退出当前的应用程序? 我做了一个研究,但所有的答案都与
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
这不是我想要的,我也需要访问语音stream。
如果你想制作某种拨号器 – 比没有 。 在ios中是不可能的
我从你的问题中了解到的是打电话,完成后,回到应用程序。 是吗?
你的scheme需要像这样:
NSURL *url= [NSURL URLWithString:[NSString stringWithFormat:@"telprompt://%@", phoneNumber]]; [[UIApplication sharedApplication] openURL:url];
使用telprompt
代替tel
。
你可以用下面的语句来完成。
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"telprompt://%@", telNumber]]];
直到按下通话button,它会要求您确认拨号或取消。 当你说电话,电话去,一旦通话结束,你会看到应用程序打开最后访问页面。
使用telprompt
,您可以在通话结束时返回到应用程序。