小編給大家分享一下iOS如何實(shí)現(xiàn)橫豎屏幕設(shè)定 ,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
思禮網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、APP開(kāi)發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項(xiàng)目制作,到程序開(kāi)發(fā),運(yùn)營(yíng)維護(hù)。成都創(chuàng)新互聯(lián)從2013年創(chuàng)立到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)。
iOS 6以下橫豎屏幕,在ViewController中重寫(xiě)方法
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{ // 系統(tǒng)宏定義只橫屏幕 return UIDeviceOrientationIsLandscape(toInterfaceOrientation); // 系統(tǒng)宏定義只豎屏幕 return UIDeviceOrientationIsPortrait(toInterfaceOrientation); // 也可以自己實(shí)現(xiàn)只豎屏幕,home鍵在下面 return (toInterfaceOrientation == UIDeviceOrientationPortrait); // 也可以自己實(shí)現(xiàn)只豎屏幕,home鍵在上面 return (toInterfaceOrientation == UIDeviceOrientationPortraitUpsideDown); // 也可以自己實(shí)現(xiàn)只豎屏幕,home鍵在右面 return (toInterfaceOrientation == UIDeviceOrientationLandscapeLeft); // 也可以自己實(shí)現(xiàn)只豎屏幕,home鍵在左面 return (toInterfaceOrientation == UIDeviceOrientationLandscapeRight); }
iOS 6以上,在AppDelegate中設(shè)置,設(shè)置后需要在Target》Summary》Support Interface Orientations設(shè)置屏幕,不設(shè)置相同的屏幕會(huì)導(dǎo)致閃退
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_6_0 -(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window{ // 豎屏home鍵在下面 return UIInterfaceOrientationMaskPortrait; // 橫屏home鍵在右邊 return UIInterfaceOrientationMaskLandscapeLeft; // 橫屏home鍵在左邊 return UIInterfaceOrientationMaskLandscapeRight; // 豎屏home鍵在上面 return UIInterfaceOrientationMaskPortraitUpsideDown; // 橫屏 return UIInterfaceOrientationMaskLandscape; // 四向翻轉(zhuǎn) return UIInterfaceOrientationMaskAll; // 除豎屏,三向翻轉(zhuǎn) return UIInterfaceOrientationMaskAllButUpsideDown; } #endif
以上是“iOS如何實(shí)現(xiàn)橫豎屏幕設(shè)定 ”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!