Browse Source

iOS: Add animation for toolbar edit mode

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

+ 2 - 1
Sources/VLCLibraryViewController.m

@@ -1345,7 +1345,8 @@ static NSString *kUsingTableViewToShowData = @"UsingTableViewToShowData";
         _indexPaths = nil;
         [self updateViewContents];
     }
-    self.navigationController.toolbarHidden = !editing;
+
+    [self.navigationController setToolbarHidden:!editing animated:YES];
 
     [UIView performWithoutAnimation:^{
         [editButton setTitle:editing ? NSLocalizedString(@"BUTTON_CANCEL", nil) : NSLocalizedString(@"BUTTON_EDIT", nil)];