mirror of https://github.com/LIJI32/SameBoy.git
Missing super calls
This commit is contained in:
parent
27a064caff
commit
12859683b7
|
@ -227,6 +227,7 @@
|
|||
|
||||
- (void)viewWillAppear:(BOOL)animated
|
||||
{
|
||||
[super viewWillAppear:animated];
|
||||
[self.navigationController setToolbarHidden:false animated:false];
|
||||
self.navigationController.toolbar.disableCompactLayout = true;
|
||||
}
|
||||
|
|
|
@ -147,6 +147,7 @@ static NSString *const tips[] = {
|
|||
[UIView animateWithDuration:0.25 animations:^{
|
||||
_effectView.alpha = 0;
|
||||
}];
|
||||
[super viewWillDisappear:animated];
|
||||
}
|
||||
|
||||
- (void)viewDidLayoutSubviews
|
||||
|
|
|
@ -509,6 +509,7 @@ contextMenuConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath
|
|||
- (void)viewWillAppear:(BOOL)animated
|
||||
{
|
||||
[self.tableView reloadData];
|
||||
[super viewWillAppear:animated];
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
|
@ -324,6 +324,7 @@ contextMenuConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath
|
|||
- (void)viewWillAppear:(BOOL)animated
|
||||
{
|
||||
[self.tableView reloadData];
|
||||
[super viewWillAppear:animated];
|
||||
}
|
||||
|
||||
- (NSString *)rootPath
|
||||
|
|
|
@ -99,6 +99,7 @@
|
|||
- (void)viewWillAppear:(BOOL)animated
|
||||
{
|
||||
[self.tableView reloadData];
|
||||
[super viewWillAppear:animated];
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Reference in New Issue