我在使用 cocos2d 和 cocosbuilder 时遇到了景观旋转问题。
我的 cocosbuilder 项目中有iPhone Landscape和iPhone5 Landscape而在 xcode支持的界面方向上,我只选择了景观。
在我的 appDelegate.mi 上有:
-(NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
这应该很简单,但是我在这里很难过,真的不想在不使用 cocosbuilder 的情况下再次重新组装我的游戏