2

在 iOS8 之前,我可以使用以下代码从我的应用程序中打开 FaceTime 应用程序。

如果我有号码,直接拨打电话,如果是nil,就直接打开FaceTime。

但是从iOS8开始,如果是空号,FaceTime根本打不开。

NSString *temp =@"facetime://";
        if(number && number.length>0){
            temp = [temp stringByAppendingString:number];
        }
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:temp]];
4

1 回答 1

0

iOS 接受以下 URL:

facetime://14085551234 
facetime://user@example.com

根据他们的FaceTime 链接

如果 FaceTime 没有以空号码启动,那可能只是他们清理旧代码的方式。

于 2014-11-05T22:26:32.647 回答