cocos2d默认的是横屏,找到ios6.0横竖屏切换响应的函数
// Only valid for iOS 6+. NOT VALID for iOS 4 / 5. -(NSUInteger)supportedInterfaceOrientations { // iPhone only if( [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone ) return UIInterfaceOrientationMaskPortrait; //return UIInterfaceOrientationMaskLandscape; // iPad only return UIInterfaceOrientationMaskPortrait; //return UIInterfaceOrientationMaskLandscape; }
修改后,程序却意外的崩溃。
百度了好久,找不到问题的所在。打开谷歌,问题一下子出来了。好吧,我在打广告。你们需要的广告。
在AppDelegate.m的AppController类下添加函数:
//解决ios6.0横竖屏切换程序崩溃问题 -(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window { return UIInterfaceOrientationMaskAll; }
修改后,程序又意外的好了。
新手的悲哀啊,做事情都不知道为什么。
这难道就是传说中的bug。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。