Explorar el Código

Keep search bar active between screens

Not sure why I ever added this code. Possibly to ignore a glitch on older versions of iOS? It works fine now on iOS 13, though.
Tanner Bennett hace 6 años
padre
commit
2df073a792
Se han modificado 1 ficheros con 0 adiciones y 8 borrados
  1. 0 8
      Classes/Core/FLEXTableViewController.m

+ 0 - 8
Classes/Core/FLEXTableViewController.m

@@ -214,14 +214,6 @@ CGFloat const kFLEXDebounceForExpensiveIO = 0.5;
     self.didInitiallyRevealSearchBar = NO;
 }
 
-- (void)viewDidDisappear:(BOOL)animated {
-    [super viewDidDisappear:animated];
-
-    if (self.searchController.active) {
-        self.searchController.active = NO;
-    }
-}
-
 #pragma mark - Private
 
 - (void)debounce:(void(^)(void))block {