我正在尝试以纵向设置我的项目,但我只是获得横向。我正在使用 cocos2d-x (2.1.4)。
我已经设置,如此处所述:
在 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 不再存在...
任何人都知道如何将项目设置为纵向?
更新:它似乎在设备上工作,它只发生在模拟器上