소스 검색

playback info: re-order tabs

Felix Paul Kühne 9 년 전
부모
커밋
474919155d
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 4
      Apple-TV/Playback/Playback Info/VLCPlaybackInfoTVViewController.m

+ 2 - 4
Apple-TV/Playback/Playback Info/VLCPlaybackInfoTVViewController.m

@@ -53,14 +53,12 @@
 
     [self setupTabBarItemAppearance];
 
-    _allTabViewControllers = @[
-                               [[VLCPlaybackInfoMediaInfoTVViewController alloc] initWithNibName:nil bundle:nil],
-                               [[VLCPlaybackInfoChaptersTVViewController alloc] initWithNibName:nil bundle:nil],
+    _allTabViewControllers = @[[[VLCPlaybackInfoChaptersTVViewController alloc] initWithNibName:nil bundle:nil],
                                [[VLCPlaybackInfoTracksTVViewController alloc] initWithNibName:nil bundle:nil],
                                [[VLCPlaybackInfoRateTVViewController alloc] initWithNibName:nil bundle:nil],
+                               [[VLCPlaybackInfoMediaInfoTVViewController alloc] initWithNibName:nil bundle:nil],
                                ];
 
-
     UITabBarController *controller = [[VLCPlaybackInfoTVTabBarController alloc] init];
     controller.delegate = self;
     self.tabBarController = controller;