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

溫馨提示×

溫馨提示×

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

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

關于IOS屏幕的旋轉問題

發布時間:2020-06-30 17:47:03 來源:網絡 閱讀:532 作者:蓬萊仙羽 欄目:移動開發

處理IPhone屏幕的旋轉是我們經常遇到的,當你做一個應用既然滿足豎屏又要滿足橫屏,這就要求我們會處理屏幕旋轉的問題!

方法一:自動布局

1.將項目中界面的四種手持方式都點上;

2.取消Use Autolayout;

3.選擇界面中某個控件然后到屬性工具欄中去找到AutoSizing功能,勾選對應的絕對定位的線條

4.重寫可以旋轉的方法

-(BOOL)shouldAutorotate {     return YES; } -(NSUInteger)supportedInterfaceOrientations {     return UIInterfaceOrientationMaskAll; } 


方法二:手動布局一(通過代碼改view種控件的坐標)

1.重寫可以旋轉的方法

-(BOOL)shouldAutorotate {     return YES; } -(NSUInteger)supportedInterfaceOrientations {     return UIInterfaceOrientationMaskAll; } 
2.勾選上項目中支持的四種手持類型

3.取消Use Autolayout

4.代碼實現:

//每當屏幕旋轉的時候都會觸發一個 -(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {     //如果是是橫屏狀態     if(toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft )     {         self.l1.frame = CGRectMake(20, 25, 110, 110);         self.l2.frame = CGRectMake(162, 25, 110, 110);         self.l3.frame = CGRectMake(304, 25, 110, 110);         self.r1.frame = CGRectMake(20, 178, 110, 110);         self.r2.frame = CGRectMake(162, 178, 110, 110);         self.r3.frame = CGRectMake(304, 178, 110, 110);} }

方法三:手動布局二(在xib中新建一個支持橫屏的view通過雙view切換實現)

1.在xib文件中拖一個view控件,選擇Orientation屬性為橫屏

2.布局好界面

3.將橫縱view分別在controller.h文件中創建對應的屬性,命名為

@property (retain, nonatomic) IBOutlet UIView *landspaceView;

@property (retain, nonatomic) IBOutlet UIView *portatiorView;

4.代碼實現

宏定義實現角度轉弧度

#define degreesToRadia(x) (M_PI * (x) / 180)//參數要加括號 ,尤其是參數附近特別要加括號

-(BOOL)shouldAutorotate {     return YES; } -(NSUInteger)supportedInterfaceOrientations {     return UIInterfaceOrientationMaskAll; } //每當屏幕旋轉的時候都會觸發一個 -(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {     //如果是是橫屏狀態     if(toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft )     { //        self.l1.frame = CGRectMake(20, 25, 110, 110); //        self.l2.frame = CGRectMake(162, 25, 110, 110); //        self.l3.frame = CGRectMake(304, 25, 110, 110); //        self.r1.frame = CGRectMake(20, 178, 110, 110); //        self.r2.frame = CGRectMake(162, 178, 110, 110); //        self.r3.frame = CGRectMake(304, 178, 110, 110);         self.view = self.landspaceView;         //self.view.transform = CGAffineTransformIdentity;         self.view.transform = CGAffineTransformMakeRotation(degreesToRadia(270));         self.view.bounds = CGRectMake(0, 0, 480, 300);     }     else if(toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)     { //        self.l1.frame = CGRectMake(37, 20, 110, 110); //        self.l2.frame = CGRectMake(37, 162, 110, 110); //        self.l3.frame = CGRectMake(37, 304, 110, 110); //        self.r1.frame = CGRectMake(190, 20, 110, 110); //        self.r2.frame = CGRectMake(190, 162, 110, 110); //        self.r3.frame = CGRectMake(190, 304, 110, 110);         self.view = self.landspaceView;         //self.view.transform = CGAffineTransformIdentity;         self.view.transform = CGAffineTransformMakeRotation(degreesToRadia(90));         self.view.bounds = CGRectMake(0, 0, 480, 300);     }     else if (toInterfaceOrientation == UIInterfaceOrientationPortrait)     {         self.view = self.portatiorView;         self.view.transform = CGAffineTransformIdentity;         self.view.bounds = CGRectMake(0, 0, 320, 460);     }     else if(toInterfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)     {         self.view = self.portatiorView;         //self.view = self.landspaceView;         //self.view.transform = CGAffineTransformIdentity;         self.view.transform = CGAffineTransformMakeRotation(degreesToRadia(180));         self.view.bounds = CGRectMake(0, 0, 320, 460);     } } 

模擬屏幕旋轉
commond + 方向鍵

向AI問一下細節

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

AI

上林县| 台湾省| 高淳县| 宣汉县| 册亨县| 辰溪县| 上栗县| 阿拉善盟| 油尖旺区| 彭山县| 哈尔滨市| 崇信县| 鹤壁市| 洛扎县| 克东县| 涪陵区| 普兰店市| 宁阳县| 天等县| 台南市| 彩票| 宁安市| 横峰县| 伊通| 旅游| 临汾市| 开化县| 郯城县| 长沙市| 神农架林区| 古田县| 桦南县| 鹿泉市| 巴中市| 随州市| 会昌县| 怀仁县| 泾川县| 黄山市| 宜川县| 文水县|