在 iOS8 之前,我可以使用以下代码从我的应用程序中打开 FaceTime 应用程序。
如果我有号码,直接拨打电话,如果是nil,就直接打开FaceTime。
但是从iOS8开始,如果是空号,FaceTime根本打不开。
NSString *temp =@"facetime://";
if(number && number.length>0){
temp = [temp stringByAppendingString:number];
}
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:temp]];