是否可以在iOS上以后台编程方式进行调用?我一直在使用此代码在我的应用中进行调用:
NSString *phoneNumber = [@"tel://"stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
答案 0 :(得分:3)
电话呼叫由电话应用程序处理,该应用程序被分配了tel://
的URL方案。您无法使用iOS库拨打号码并留在自己的应用中。
您可以做的是实施第三方VoIP解决方案,例如Twilio。