Missing super calls

This commit is contained in:
Lior Halphon
2024-11-30 00:10:01 +02:00
parent 27a064caff
commit 12859683b7
5 changed files with 5 additions and 0 deletions

View File

@@ -227,6 +227,7 @@
- (void)viewWillAppear:(BOOL)animated - (void)viewWillAppear:(BOOL)animated
{ {
[super viewWillAppear:animated];
[self.navigationController setToolbarHidden:false animated:false]; [self.navigationController setToolbarHidden:false animated:false];
self.navigationController.toolbar.disableCompactLayout = true; self.navigationController.toolbar.disableCompactLayout = true;
} }

View File

@@ -147,6 +147,7 @@ static NSString *const tips[] = {
[UIView animateWithDuration:0.25 animations:^{ [UIView animateWithDuration:0.25 animations:^{
_effectView.alpha = 0; _effectView.alpha = 0;
}]; }];
[super viewWillDisappear:animated];
} }
- (void)viewDidLayoutSubviews - (void)viewDidLayoutSubviews

View File

@@ -509,6 +509,7 @@ contextMenuConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath
- (void)viewWillAppear:(BOOL)animated - (void)viewWillAppear:(BOOL)animated
{ {
[self.tableView reloadData]; [self.tableView reloadData];
[super viewWillAppear:animated];
} }
@end @end

View File

@@ -324,6 +324,7 @@ contextMenuConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath
- (void)viewWillAppear:(BOOL)animated - (void)viewWillAppear:(BOOL)animated
{ {
[self.tableView reloadData]; [self.tableView reloadData];
[super viewWillAppear:animated];
} }
- (NSString *)rootPath - (NSString *)rootPath

View File

@@ -99,6 +99,7 @@
- (void)viewWillAppear:(BOOL)animated - (void)viewWillAppear:(BOOL)animated
{ {
[self.tableView reloadData]; [self.tableView reloadData];
[super viewWillAppear:animated];
} }
@end @end