加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

使用cocos2d-x时在ios上设置竖屏ZZ

发布时间:2020-12-14 16:28:43 所属栏目:百科 来源:网络整理
导读:http://my.oschina.net/minglic/blog/151914 使用cocos2d-x创建一个ios项目后,在模拟器中运行时,默认是竖屏的,如果需要设置成横屏, 需要改掉三个地方: 1、修改RootViewController.mm文件中的两个地方: ? 1 2 3 4 5 6 7 8 9 10 -( BOOL )shouldAutorota

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上:

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读