从我的应用程序进行FaceTime音频通话

use*_*125 3 ios facetime ios7

我有一个与FaceTime帐户关联的电话号码或电子邮件地址如何从我的应用程序中启动FaceTime音频呼叫?

use*_*125 5

原来url方案是facetime-audio://

感谢上面的回复,但是url方案适用于FaceTime视频,而不是所请求的音频.


Mid*_* MP 2

您可以使用 Apple 的Facetime URL 方案来实现此目的

网址方案:

// by Number
facetime://14085551234

// by Email
facetime://user@example.com
Run Code Online (Sandbox Code Playgroud)

代码 :

NSString *faceTimeUrlScheme = [@"facetime://" stringByAppendingString:emailOrPhone];
NSURL    *facetimeURL       = [NSURL URLWithString:ourPath];

// Facetime is available or not
if ([[UIApplication sharedApplication] canOpenURL:facetimeURL])
{
    [[UIApplication sharedApplication] openURL:facetimeURL];
}
else
{
    // Facetime not available
}
Run Code Online (Sandbox Code Playgroud)