亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

文安县| 克山县| 瓮安县| 宝鸡市| 文山县| 岳西县| 高雄市| 巫山县| 克山县| 仁化县| 阜城县| 清流县| 金沙县| 元阳县| 高尔夫| 文成县| 龙南县| 定结县| 安康市| 江城| 华池县| 盘山县| 焦作市| 汕尾市| 富民县| 连州市| 东乡县| 平顺县| 榆林市| 惠水县| 绥芬河市| 扶余县| 安远县| 襄垣县| 金溪县| 吐鲁番市| 义马市| 朝阳区| 寻乌县| 绵阳市| 乌审旗|