Saurabh
Saurabh

Reputation: 22893

how to add face time in iOS4 app?

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

Answers (1)

pablasso
pablasso

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

Related Questions