質問

How can we integrate our app with FaceTime in iOS 6? Is there an API available? It it possible to integrate FaceTime inside the app, without using a url like facetime://?

役に立ちましたか?

解決

There is no developer-facing method of utilising FaceTime in the iOS SDK. The best you can do is make a call from your app like so:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"facetime://tel-number"]];
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top