将cocos2-x项目设置为纵向

时间:2013-07-09 10:46:17

标签: iphone ios cocos2d-iphone cocos2d-x

我正在尝试以纵向方式设置我的项目,但我只是想要了解风景。我正在使用cocos2d-x(2.1.4)。

我已经设定了here

在RootViewController.mm:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return UIInterfaceOrientationIsPortrait( interfaceOrientation );
}

// For ios6, use supportedInterfaceOrientations & shouldAutorotate instead
- (NSUInteger) supportedInterfaceOrientations{
#ifdef __IPHONE_6_0
return UIInterfaceOrientationMaskPortrait;
#endif
}

我也尝试过更改设置,但仍然没有。

setDeviceOrientation不再存在......

任何人都知道如何将项目设置为肖像?

更新:它似乎在设备上运行,它只发生在模拟器上

1 个答案:

答案 0 :(得分:0)

我是这样做的:在文件列表顶部的xcode是项目。转到那个,然后是“目标>无论什么”位。您已“支持接口方向”。您可以检查您想要和不想要的方向。请务必注意iPhone和iPad有2个不同的部分,您必须向下滚动并在iPad方向部分单独设置。

我认为它在模拟器中不起作用的原因是你正在使用iPhone / iPod来测试和运行iPad模拟器。