Frage

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://?

War es hilfreich?

Lösung

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"]];
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top