coco2d-x 2.0 + 版本设置竖屏

来源:互联网 发布:mac的照片如何导出ipad 编辑:程序博客网 时间:2024/05/18 04:01

全局搜索 

supportedInterfaceOrientations方法


然后替换成



// For ios6, use supportedInterfaceOrientations & shouldAutorotate instead- (NSUInteger) supportedInterfaceOrientations{#ifdef __IPHONE_6_0    //return UIInterfaceOrientationMaskLandscape;    return UIInterfaceOrientationMaskAllButUpsideDown;#endif}