Sfoglia il codice sorgente

Remove needless refresh on viewWillAppear:

Tanner Bennett 6 anni fa
parent
commit
dd05a6652c

+ 0 - 8
Classes/ObjectExplorers/FLEXObjectExplorerViewController.m

@@ -128,14 +128,6 @@
     [self.tableView addGestureRecognizer:rightSwipe];
 }
 
-- (void)viewWillAppear:(BOOL)animated {
-    [super viewWillAppear:animated];
-    
-    // Reload the entire table view rather than just the visible cells, because the filtered rows
-    // may have changed (i.e. a change in the description row that causes it to get filtered out).
-    [self reloadData];
-}
-
 
 #pragma mark - Private