中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS如何實現橫豎屏幕設定

發布時間:2021-10-21 11:45:40 來源:億速云 閱讀:279 作者:小新 欄目:移動開發

小編給大家分享一下iOS如何實現橫豎屏幕設定 ,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

iOS 6以下橫豎屏幕,在ViewController中重寫方法

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{     // 系統宏定義只橫屏幕     return UIDeviceOrientationIsLandscape(toInterfaceOrientation);     // 系統宏定義只豎屏幕     return UIDeviceOrientationIsPortrait(toInterfaceOrientation);     // 也可以自己實現只豎屏幕,home鍵在下面     return (toInterfaceOrientation == UIDeviceOrientationPortrait);     // 也可以自己實現只豎屏幕,home鍵在上面     return (toInterfaceOrientation == UIDeviceOrientationPortraitUpsideDown);     // 也可以自己實現只豎屏幕,home鍵在右面     return (toInterfaceOrientation == UIDeviceOrientationLandscapeLeft);     // 也可以自己實現只豎屏幕,home鍵在左面     return (toInterfaceOrientation == UIDeviceOrientationLandscapeRight);      }

iOS 6以上,在AppDelegate中設置,設置后需要在Target》Summary》Support Interface Orientations設置屏幕,不設置相同的屏幕會導致閃退

#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;     // 四向翻轉     return UIInterfaceOrientationMaskAll;     // 除豎屏,三向翻轉     return UIInterfaceOrientationMaskAllButUpsideDown;      } #endif

以上是“iOS如何實現橫豎屏幕設定 ”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

东海县| 桓台县| 临海市| 吴旗县| 壶关县| 宜都市| 黄浦区| 平南县| 泉州市| 金湖县| 达日县| 黄冈市| 冷水江市| 伊春市| 大埔区| 洮南市| 河北区| 驻马店市| 昭苏县| 吉安县| 淮北市| 常宁市| 广南县| 涞源县| 广德县| 兰西县| 原平市| 缙云县| 故城县| 方正县| 峨边| 通海县| 巫山县| 个旧市| 黑水县| 十堰市| 云霄县| 策勒县| 茌平县| 绥德县| 枣庄市|