Question

How can we integrate our app with FaceTime in iOS 6? Is there an API available? It it possible to integrate FaceTime inside the app, without using a url like facetime://?

Était-ce utile?

La solution

There is no developer-facing method of utilising FaceTime in the iOS SDK. The best you can do is make a call from your app like so:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"facetime://tel-number"]];
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top