Browse Source

VLCLibraryViewController : fix search bar display in devices starting in collection view mode

Pierre SAGASPE 7 years ago
parent
commit
049c090e1b
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Sources/VLCLibraryViewController.m

+ 4 - 0
Sources/VLCLibraryViewController.m

@@ -256,6 +256,10 @@ static NSString *kUsingTableViewToShowData = @"UsingTableViewToShowData";
     _searchController.dimsBackgroundDuringPresentation = NO;
     _searchController.delegate = self;
     [self setSearchBar:YES resetContent:YES];
+    if (!self.usingTableViewToShowData) {
+        if (@available(iOS 11.0, *))
+            [self setSearchBar:NO resetContent:NO];
+    }
 }
 
 - (void)viewWillAppear:(BOOL)animated