Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道他们在 ios 4.0 及以后的版本中是否可以在不退出应用程序的情况下从应用程序进行调用。
我已经对此进行了研究,并且知道他们在 iOS 3.1 之前没有任何方法。所以我想知道iOS 4是否支持它。需要其他解决方案
UIApplication 应用] openURL:[NSURL URLWithString:@"tel://8005551212"]];
您可以使用
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://8005551212"]];
对于 iOS 4.x 它可以工作。