소스 검색

Don't show the menu's navigation bar on the iPad

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Romain Goyet 12 년 전
부모
커밋
549a725fb2
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      AspenProject/VLCPlaylistViewController.m

+ 2 - 0
AspenProject/VLCPlaylistViewController.m

@@ -284,6 +284,8 @@
         [navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"navBarBackgroundPhoneLandscape"]
                                                  forBarMetrics:UIBarMetricsLandscapePhone];
         self.menuViewController = navigationController;
+        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
+            navigationController.navigationBarHidden = YES;
     }
 
     if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {