您好,登錄后才能下訂單哦!
小編給大家分享一下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如何實現橫豎屏幕設定 ”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。