Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当试图让我的应用程序打开一个 facetime url (facetime://15555555555) 时,它会加载一个空白的黑屏。
NSURL *facetimeURL = [NSURL URLWithString:@"facetime://15555555555"]; [[UIApplication sharedApplication] openURL:facetimeURL];
有没有人在这方面取得任何成功?
只是提醒一下,这似乎已在 IOS 4.1 中修复,我们在 4.0 中遇到了类似的问题,但在升级到 4.1 后 - 它开始工作。
我们使用的线路是:
[[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"facetime://5555555555"]];
我们没有尝试使用前导 1。