我是使用 Kobold2d v2.0.4 的初学者,我正在创建的游戏仅适用于 iOS 6,并且设计为仅在横向上运行,当我实现游戏中心时,我发现 iOS 6 上的游戏中心登录只能在肖像,所以我搜索并找到了解决方案,但问题是我找不到将它们放在 Kobold2d 中的位置。将此添加到您的 RootViewController
-(NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAllButUpsideDown;
}
-(BOOL)shouldAutorotate {
return [[UIDevice currentDevice] orientation] != UIInterfaceOrientationPortrait;
}
我曾尝试寻找 KKRootViewController 但我能找到,我只是想知道其他 Kobold2d 开发人员如何找到解决此问题的解决方案。如果您不介意,请告诉我您如何解决它。非常感谢你。