您好,登錄后才能下訂單哦!
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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。