cocos2dx如何设置ios和Android横屏竖屏的几种方法
在ios7上也许我们设置好了横竖屏,但到了ios6上也许会变化。下面白白给大家分享一下我的做法
转载请注明地址http://blog.csdn.net/u010229677
1、通用的
只需要在RootViewController.mm文件里面
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return UIInterfaceOrientationIsPortrait( interfaceOrientation ); } // For ios6, use supportedInterfaceOrientations & shouldAutorotate instead - (NSUInteger) supportedInterfaceOrientations{ #ifdef __IPHONE_6_0 return UIInterfaceOrientationMaskPortrait; #endif } - (BOOL) shouldAutorotate { return NO; }
————也可以这么做—————
if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) { [[UIDevice currentDevice] performSelector:@selector(setOrientation:) withObject:(id)UIInterfaceOrientationPortrait]; } } //但是 - (BOOL) shouldAutorotate { return NO; }//一定要返回no
另外,需要在项目的General属性Deployment Info的Portrait前面选中
2、可以设置view与电池条方向保持一致在AooController.mm中
<span style="font-size:18px;">- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions </span>
这个函数中加一句话
[[UIApplication sharedApplication] setStatusBarOrientation:UIDeviceOrientationPortrait animated: NO];
android项目修改为横屏的方法是修改xml文件:
在AndroidManifest.xml中设置
android:screenOrientation="portrait"
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。