1

我想拨打其他 facetime 号码,但这些是电子邮件而不是号码。我该怎么做?

对于数字,我知道该使用什么。

NSURL *url = [NSURL URLWithString:@"facetime://+123456789"];
[[UIApplication sharedApplication] openURL:url];

但是对于电子邮件,我该如何更改它。任何的想法?

4

1 回答 1

2
NSURL *url = [NSURL URLWithString:@"facetime://email@example.com"];
[[UIApplication sharedApplication] openURL:url];

这些是选项

@"facetime://appleId"             // For apple id
@"facetime://email@example.com"   // For email id
@"facetime://5558675309"          // For phone number
于 2013-02-08T07:20:22.210 回答