我需要我的iOS应用程序才能使用电话号码拨打电话。
呼叫应通过SIM网络连接,而不是通过互联网/数据连接。
如果有人知道如何实现这一目标,请指引我朝着正确的方向前进。
答案 0 :(得分:0)
我用它来打开电话应用程序并拨打给定号码的电话。
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@", @"Your phone number here"]]];
答案 1 :(得分:0)
查看私有API TelephonyUI.framework。这是您的要求的解决方案。