diff --git a/iOS/GBCheatsController.m b/iOS/GBCheatsController.m index 422d5b4..6371f89 100644 --- a/iOS/GBCheatsController.m +++ b/iOS/GBCheatsController.m @@ -227,6 +227,7 @@ - (void)viewWillAppear:(BOOL)animated { + [super viewWillAppear:animated]; [self.navigationController setToolbarHidden:false animated:false]; self.navigationController.toolbar.disableCompactLayout = true; } diff --git a/iOS/GBMenuViewController.m b/iOS/GBMenuViewController.m index 55219db..ff28db2 100644 --- a/iOS/GBMenuViewController.m +++ b/iOS/GBMenuViewController.m @@ -147,6 +147,7 @@ static NSString *const tips[] = { [UIView animateWithDuration:0.25 animations:^{ _effectView.alpha = 0; }]; + [super viewWillDisappear:animated]; } - (void)viewDidLayoutSubviews diff --git a/iOS/GBPalettePicker.m b/iOS/GBPalettePicker.m index 6e21b1e..93bbc8b 100644 --- a/iOS/GBPalettePicker.m +++ b/iOS/GBPalettePicker.m @@ -509,6 +509,7 @@ contextMenuConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath - (void)viewWillAppear:(BOOL)animated { [self.tableView reloadData]; + [super viewWillAppear:animated]; } @end diff --git a/iOS/GBROMViewController.m b/iOS/GBROMViewController.m index e6d3864..e5e8991 100644 --- a/iOS/GBROMViewController.m +++ b/iOS/GBROMViewController.m @@ -324,6 +324,7 @@ contextMenuConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath - (void)viewWillAppear:(BOOL)animated { [self.tableView reloadData]; + [super viewWillAppear:animated]; } - (NSString *)rootPath diff --git a/iOS/GBThemesViewController.m b/iOS/GBThemesViewController.m index 5d0e223..a6642bd 100644 --- a/iOS/GBThemesViewController.m +++ b/iOS/GBThemesViewController.m @@ -99,6 +99,7 @@ - (void)viewWillAppear:(BOOL)animated { [self.tableView reloadData]; + [super viewWillAppear:animated]; } @end