Reputation: 22893
Is there an API which I can use to integrate face time in my app?
Didn't find anything on google :(
Upvotes: 2
Views: 3030
Reputation: 2499
For the time being, the only thing you can do with Facetime is initiating calls with URLs:
NSURL *url = [NSURL URLWithString:@"facetime://+123456789"];
[[UIApplication sharedApplication] openURL:url];
Upvotes: 7