91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

疏勒县| 洛隆县| 凉城县| 栾城县| 庆安县| 周口市| 临沂市| 永靖县| 福泉市| 大新县| 青岛市| 安阳县| 东至县| 剑川县| 南昌市| 福贡县| 闵行区| 吴川市| 固安县| 淮滨县| 温泉县| 逊克县| 黄梅县| 高陵县| 贺兰县| 翁牛特旗| 资中县| 拉萨市| 本溪| 克什克腾旗| 皋兰县| 上栗县| 扎赉特旗| 通化县| 崇明县| 沈丘县| 黑山县| 高阳县| 麻阳| 那曲县| 南昌县|