[已解决]如何强制竖屏?

好像对iPad失效

CC-JS里面能做吗?

。。。求教啊啊啊

项目默认是横屏的,修改竖屏的方法是在ios/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;
    }

android项目修改为横屏的方法是修改xml文件:
在AndroidManifest.xml中设置
android:screenOrientation=“portrait”

Cocos2d-js 啊:6:

你的意思是在ipad上跑网页么?

看截图 portrait属性是竖屏

强制不了的吧?
屏幕旋转浏览器会跟着旋转的哦
拿微信打比方,你如果设置自己的微信不可旋转,那就等于强制竖屏了,否则木有办法

好吧。谢谢了。

ios9横屏的应用如何强制竖屏,没有完全显示也没关系,只要强制竖屏就行,求代码与方法 谢谢了