소스 검색

AudioViewController: Rearrange categories order

To be in line with other platforms, set audio categories as:

Artist, Album, Tracks, Genre

(closes #558)
Soomin Lee 6 년 전
부모
커밋
c78cc5372c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Sources/MediaViewControllers/AudioViewController.swift

+ 2 - 2
Sources/MediaViewControllers/AudioViewController.swift

@@ -27,10 +27,10 @@ class VLCAudioViewController: VLCMediaViewController {
 
     override func viewControllers(for pagerTabStripController: PagerTabStripViewController) -> [UIViewController] {
         return [
-            VLCTrackCategoryViewController(services),
-            VLCGenreCategoryViewController(services),
             VLCArtistCategoryViewController(services),
             VLCAlbumCategoryViewController(services),
+            VLCTrackCategoryViewController(services),
+            VLCGenreCategoryViewController(services)
         ]
     }
 }