萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> ios >> ios開發過程中屏幕方向判斷的問題

ios開發過程中屏幕方向判斷的問題

   Landscape 豎屏Portrait 橫屏最有效的方法是:在willRotateToInterfaceOrientation:duration:方法中將方向存儲起來:DrviceOrientation = toInterfaceOrientation;然後在別的方法中使用相應的屏幕的方向方法一:直接獲取設備的方法:self.interfaceOrientation(此方法已經過期)方法二:通過下面的方法:UIDeviceOrientation duration = [[UIDevice currentDevice]orientation];方法1、2當在模擬器中運行時,剛開始獲得的設備方向為UnKnow方法三跟據屏幕的寬度計算相應的屏幕的方向[[UIScreenmainScreen] applicationFrame].size.height[[UIScreenmainScreen] applicationFrame].size.width可以用來獲取當前屏幕的尺寸,高和寬。由於系統的狀態條占高20且總是在屏幕上方,它使得上面兩個值在橫豎屏的時候有變化,因此可用來判斷當前是橫屏還是豎屏。簡單的說豎屏時,height為1004,width為768。橫屏時,height為1024,width為748。當然 ,前提是你沒有把系統的狀態欄去掉.它可以用在任何方法內作為判斷條件.應用示例如下:if (loadingview ==nil){ loadingview = [[UIViewalloc] initWithFrame:CGRectMake(284, 402, 200, 200)]; if ([[UIScreenmainScreen] applicationFrame].size.height==1024) { loadingview.frame=CGRectMake(412, 264, 200, 200);//此時為橫屏 } [loadingviewsetBackgroundColor:[UIColorclearColor]];}//創建loadingview的時候根據當前橫豎屏設定位置。方法四 在論壇裡已經有人發過了(我在這裡僅做了簡單的搬運工作)//下面則是直接以屏幕方向判斷- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {switch (interfaceOrientation) { caseUIInterfaceOrientationPortrait: //home健在下 break; caseUIInterfaceOrientationPortraitUpsideDown: //home健在上 break; caseUIInterfaceOrientationLandscapeLeft: //home健在左 break; caseUIInterfaceOrientationLandscapeRight: //home健在右 break; default: break; }方法五再屏幕旋轉的時候記錄下來屏幕的方向 著樣做的畫需要再窗後啟動的時候讓屏幕進行一次旋轉,否則的畫當程序啟動的時候 屏幕的方向會有問題#pragma mark 屏幕旋轉完成-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation{ NSLog(@"屏幕旋轉完成 dockView的高度%f",self.dockView.height); //self.dockView.width = self.dockWidth;}#pragma mark 屏幕將旋轉-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration{ [UIView animateWithDuration:0.25 animations:^{ self.dockView.width = self.dockWidth; }]; // 判斷橫豎屏 if (UIInterfaceOrientationIsPortrait(toInterfaceOrientation)) { NSLog(@"屏幕將旋轉 為 豎屏"); self.dockView.width = self.dockWidth; }else{ NSLog(@"屏幕將旋轉 為 橫屏"); self.dockWidth = 100; }}

copyright © 萬盛學電腦網 all rights reserved