cocos2d 竖屏

来源:互联网 发布:alien skin mac 编辑:程序博客网 时间:2024/06/05 05:03

1、android

AndroidManifest.xml文件中,

screenOrientation="landscape" 为横屏,

screenOrientation="portrait"为竖屏

2、iOS

// For ios6, use supportedInterfaceOrientations & shouldAutorotate instead

NSUInteger) supportedInterfaceOrientations{

#ifdef __IPHONE_6_0

    //return UIInterfaceOrientationMaskLandscape;

    returnUIInterfaceOrientationMaskPortrait;

#endif

}


0 0
原创粉丝点击