如何在我的 iPhone 应用程序上使用 Objective-c 使用 GSM 代码转移呼叫?
我已经尝试使用以下代码来执行此操作:
NSURL *phoneURL = [[NSURL alloc] initWithString:@"tel:**21*<destination_number>#"];
[[UIApplication sharedApplication] openURL:phoneURL];
但它不起作用,有时应用程序会崩溃。
它适用于我使用普通号码(如 19765432221)...
有人吗?
谢谢!
I have already tried to do it using the following code:
NSURL *phoneURL = [[NSURL alloc] initWithString:@"tel:**21*<destination_number>#"];
[[UIApplication sharedApplication] openURL:phoneURL];
but it doesn't work and sometimes the app crashs.
It works for me using a normal number (like 19765432221)...
Anybody?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定 *21# 是什么意思,但如果它不能按照你的方式工作,那很肯定是因为苹果不允许这样做。没有其他(公共)API 方法可以执行此类操作。
I'm not sure what *21# means, but if it doesn't work the way you're doing it, it's most certainly because Apple doesn't allow it. There's no other (public) API method for doing this kind of thing.