Преглед на файлове

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