http://my.oschina.net/minglic/blog/151914
使用cocos2d-x创建一个ios项目后,在模拟器中运行时,默认是竖屏的,如果需要设置成横屏,需要改掉三个地方:
1、修改RootViewController.mm文件中的两个地方:
1
2
3
4
5
6
7
8
9
10
|
-(
BOOL
)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
return
UIInterfaceOrientationIsPortrait(interfaceOrientation);
}
//Forios6,usesupportedInterfaceOrientations&shouldAutorotateinstead
-(NSUInteger)supportedInterfaceOrientations{
#ifdef__IPHONE_6_0
UIInterfaceOrientationMaskPortrait;
#endif
}
|
另外还要改一个地方,在xcode5上:
原文链接:https://www.f2er.com/cocos2dx/341580.html