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 6 中将我们的应用与 FaceTime 集成?有可用的 API 吗?是否可以将 FaceTime 集成到应用程序中,而无需使用类似的 url facetime://?
facetime://
iOS SDK 中没有面向开发人员的方法来使用 FaceTime。您能做的最好的事情就是从您的应用程序中拨打电话,如下所示:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"facetime://tel-number"]];