Search code examples
iosfacetime

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 :(


Solution

  • 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];