您好,登錄后才能下訂單哦!
cocos2d默認(rèn)的是橫屏,找到ios6.0橫豎屏切換響應(yīng)的函數(shù)
// 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; }
修改后,程序卻意外的崩潰。
百度了好久,找不到問題的所在。打開谷歌,問題一下子出來(lái)了。好吧,我在打廣告。你們需要的廣告。
在AppDelegate.m的AppController類下添加函數(shù):
//解決ios6.0橫豎屏切換程序崩潰問題 -(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window { return UIInterfaceOrientationMaskAll; }
修改后,程序又意外的好了。
新手的悲哀啊,做事情都不知道為什么。
這難道就是傳說(shuō)中的bug。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。