iOS7 MPMoviePlayerViewController 橫屏顯示

來源:互聯網
上載者:User

標籤:des   blog   class   code   tar   ext   width   color   strong   get   int   

在應用程式中用到MPMoviePlayerViewController時,有時需要保持應用程式為豎屏狀態,而視頻播放器顯示為橫屏,如何做呢?如果採用強制橫屏的方法,應用審核的時候是不會通過的,因為該方法已經被蘋果禁止了。主要代碼如下:

 

[html] view plaincopy
  1. - (void)addVideoViewController  
  2. {  
  3.     MPMoviePlayerViewController *moviePlayerViewController = [[MPMoviePlayerViewController alloc] init];  
  4.     moviePlayerViewController.view.frame = CGRectMake(0, 0, self.view.bounds.size.height, self.view.bounds.size.width);  
  5.     moviePlayerViewController.view.center = CGPointMake(self.view.bounds.size.width/2, self.view.bounds.size.height/2);  
  6.     CGAffineTransform transform = CGAffineTransformMakeRotation(M_PI/2);  
  7.     [moviePlayerViewController.view setTransform:transform];  
  8.     [self.view addSubview:moviePlayerViewController.view];  
  9. }  

 

 

 

MPMoviePlayerViewController加入到它的父ViewController中通過

CGAffineTransformMakeRotation()方法使得視頻播放器旋轉90度,這樣就可以橫屏了,如:

 

 

小夥伴們!看出問題來了沒有,狀態列顯示了倆個,這個怎麼弄呢?

 

其實在IOS7中,每個ViewController都會帶上一個StatusBar,上面的那個StatusBar是視頻播放器帶的,視頻播放器旋轉,狀態列也跟著旋轉。左側的StatusBar是視頻播放器的父ViewController帶的,因為父ViewController沒有旋轉,所以顯示在左側。解決這個問題就需要在顯示播放器的時候隱藏左側的StatusBar,退出播放器時顯示左側的StatusBar,具體方法如下:

IOS7中就需要用到如下倆個方法:

(1) - (BOOL)prefersStatusBarHiddenNS_AVAILABLE_IOS(7_0);

(2) - (void)setNeedsStatusBarAppearanceUpdateNS_AVAILABLE_IOS(7_0);

 

在父ViewController中重寫- (BOOL)prefersStatusBarHidden方法,主要代碼如下:

[html] view plaincopy
  1. - (BOOL)prefersStatusBarHidden  
  2. {  
  3.     return isHiddenStatusBar;  
  4. }  
  5.   
  6. - (void)showStatusBar  
  7. {  
  8.     isHiddenStatusBar = NO;  
  9.     if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {  
  10.         [self prefersStatusBarHidden];  
  11.         [self setNeedsStatusBarAppearanceUpdate];  
  12.     }  
  13. }  
  14.   
  15. - (void)hideStatusBar  
  16. {  
  17.     isHiddenStatusBar = YES;  
  18.     if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {  
  19.         [self prefersStatusBarHidden];  
  20.         [self setNeedsStatusBarAppearanceUpdate];  
  21.     }  
  22. }  

 

(1) isHiddenStatusBar是定義的一個變數,判斷是否隱藏StatusBar

 

(2) - (void)showStatusBar是自訂的一個方法,在需要顯示狀態列的時候調用該方法

(3) - (void)hideStatusBar是自訂的一個方法,在需要隱藏狀態列的時候調用該方法

 

至此MPMoviePlayerViewController橫屏顯示功能就實現了。這是在IOS7上測試通過的結果,IOS6還沒有找出相應的方法可以隱藏左側的狀態列,希望有高人能告訴我答案。

此文章出自http://blog.csdn.net/chchong1234/article/details/24649083感謝博主的分享~

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.