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://
?
Asked
Active
Viewed 2,433 times
1

jscs
- 63,694
- 13
- 151
- 195

Aswathy Bose
- 4,279
- 4
- 32
- 44
1 Answers
2
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"]];

Alan Zeino
- 4,406
- 2
- 23
- 30