到iOS8为止,我可以使用以下代码从我的应用程序中打开FaceTime应用程序。

如果我有电话号码,将直接拨打电话;如果没有电话号码,它将直接打开FaceTime。

但是从iOS8开始,在数字为空的情况下,FaceTime根本不会打开。

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

最佳答案

iOS接受以下URL:

facetime://14085551234
facetime://[email protected]

根据他们的FaceTime Links

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

关于ios - 以编程方式打开FaceTime且没有任何数字或Apple ID-iOS8,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26768160/

10-08 23:41