소스 검색

Fix autorotation in player view controller on iOS5.x

Gleb Pinigin 12 년 전
부모
커밋
c384b35eeb
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      AspenProject/VLCMovieViewController.m

+ 7 - 0
AspenProject/VLCMovieViewController.m

@@ -321,6 +321,13 @@
     self.mediaItem.lastPosition = @([_mediaPlayer position]);
 }
 
+#pragma mark - autorotation
+
+- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
+    return UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad
+           || toInterfaceOrientation != UIInterfaceOrientationMaskPortraitUpsideDown;
+}
+
 #pragma mark - External Display
 
 - (BOOL)hasExternalDisplay