因此我试图将游戏中心实施到我的傻瓜游戏即时工作,我无法找到GKLeaderboardViewControllerDelegate的替代品。它在ios 7中弃用了
如果你们知道可以使用ios 7的教程或示例代码,请将它链接起来:)
提前致谢
答案 0 :(得分:3)
现在似乎替代方案只是GKGameCenterViewController
和GKGameCenterViewControllerDelegate
。 GKGameCenterViewController
允许您指定iOS 7中的leaderboardIdentifier
。您还可以指定viewState
GKGameCenterViewControllerStateLeaderboards
,以便最初加载时可以看到排行榜。您可以在此GameKit documentation中找到一些示例。
此外,虽然this documentation表示它适用于iOS 6,但它似乎使用的是GKGameCenterViewController
而不是GKLeaderboardViewController
,因此在iOS 7上可能没问题。