我正在使用 COCOS2D 游戏。现在我已经将我的游戏更新到了 iOS6。我已经看到 Apple 更改了 Game Center 登录(身份验证)过程。因此,为此我使用了处理程序 authenticateWithCompletionHandler 并且我的游戏正在崩溃。
我也通过添加方法解决了这个问题。
- (NSUInteger)application:(UIApplication*)application supportedInterfaceOrientationsForWindow:(UIWindow*)window
{
return UIInterfaceOrientationMaskAllButUpsideDown;
}
这解决了我的崩溃问题。但现在的问题是 Game-Center 身份验证视图仅在纵向模式下提供。因为我的整个游戏都处于横向模式。我想要横向的身份验证视图。
有没有人为我提供这个问题的任何解决方案。
提前致谢!!!