formatting, remove manager stuff

This commit is contained in:
Scott Pfeil 2021-10-18 13:13:05 -04:00
parent 54ba48bb12
commit bbad2e8437
2 changed files with 2 additions and 4 deletions

View File

@ -22,9 +22,6 @@
/// Notifies the manager that the controller received new data.
- (void)newDataReceivedInViewController:(nonnull UIViewController *)viewController;
/// Call on a manager when a view controller is being prepared to be displayed. (Mostly called by other managers)
- (void)prepareDisplayForViewController:(nonnull UIViewController *)viewController;
/// Call on a manager when a view controller will be displayed. (Mostly called by other managers)
- (void)willDisplayViewController:(nonnull UIViewController *)viewController;

View File

@ -229,7 +229,8 @@
}
}
- (void) navigationController:(UINavigationController *)navigationController prepareDisplayForViewController:(UIViewController *)viewController{
// Notify delegates to prepare for the controller to be added to the navigation controller.
- (void)navigationController:(UINavigationController *)navigationController prepareDisplayForViewController:(UIViewController *)viewController {
if (self.delegate && [self.delegate respondsToSelector:@selector(navigationController:prepareDisplayForViewController:)]) {
[self.delegate navigationController:navigationController