我尝试在我的iPhone游戏中测试Game Center,但是当我尝试使用以下代码行连接时,我收到一条警告,上面写着“游戏中心无法识别此游戏”。
[[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error) {
if (error == nil)
{
// Insert code here to handle a successful authentication.
}
else
{
// Your application can process the error parameter to report the error to the player.
}
}];
现在我已阅读了许多论坛并查看了Apple文档,但我无法找到如何在iTunes连接上启用Game Center选项。我想我需要首先向“管理应用程序”添加一个应用程序,然后启用游戏中心选项。但是,如何仅为测试添加应用程序?
感谢您的帮助:)
答案 0 :(得分:1)
我认为问题出现在错误的cocos2d版本中。移动到v0.99.5游戏中心开始工作。
答案 1 :(得分:0)
我正在使用iPad模拟器测试iPad应用程序。我遇到了类似的问题。
我已按照“游戏套件编程指南”中的说明执行了所有步骤,包括设置iTunes Connect。即便如此,我仍然收到错误消息:游戏中心无法识别此游戏“
我的应用程序只有在我从模拟器中删除并重新安装时才会被识别,正如iMuller所建议的那样。