فهرست منبع

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