如何从我的应用程序运行 iphone GameCenter 应用程序?
我认为最好的方法,也可能是唯一的方法是使用带有 [[UIApplication sharedApplication] openURL:...] 的 URL 方案。但我找不到游戏中心的 URL 方案。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
gamecenter:
URL 方案启动 Game Center 应用:You can launch the Game Center app by using the
gamecenter:
URL scheme:在 iOS 6.0 中,有一种非常酷的新方法可以使用 GKGameCenterViewController。
要使用它,您的视图控制器必须充当 GKGameCenterViewController 的委托:
然后显示 Game Center 视图:
如果用户使用的是 iOS 5.0,则只能使用前面所说的 URL 方案。
In iOS 6.0 there's a new way quite cool to show Game Center using GKGameCenterViewController.
For using it your view controller must acts as a delegate to the GKGameCenterViewController:
And then for displaying the Game Center view:
If the user it's under iOS 5.0, you can only use the URL schemes like you said before.
尝试苹果示例代码。它解释了您的应用程序如何与游戏中心配合使用。 http://developer.apple.com/library/ios/ #samplecode/GKTapper/Introduction/Intro.html
Try the Apple example code. It explain how your app work with gamecenter. http://developer.apple.com/library/ios/#samplecode/GKTapper/Introduction/Intro.html