Browse Source

iOS: Show navigation bar on scrollsToTop

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
Soomin Lee 8 years ago
parent
commit
0146580080
1 changed files with 8 additions and 0 deletions
  1. 8 0
      Sources/VLCLibraryViewController.m

+ 8 - 0
Sources/VLCLibraryViewController.m

@@ -687,6 +687,14 @@ static NSString *kUsingTableViewToShowData = @"UsingTableViewToShowData";
     [self _displayEmptyLibraryViewIfNeeded];
     [self _displayEmptyLibraryViewIfNeeded];
 }
 }
 
 
+
+#pragma mark - Scroll View Delegate
+
+- (void)scrollViewDidScrollToTop:(UIScrollView *)scrollView
+{
+    [self.navigationController.scrollNavigationBar resetToDefaultPositionWithAnimation:YES];
+}
+
 #pragma mark - Table View
 #pragma mark - Table View
 
 
 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView