formatting, remove manager stuff
This commit is contained in:
parent
54ba48bb12
commit
bbad2e8437
@ -22,9 +22,6 @@
|
|||||||
/// Notifies the manager that the controller received new data.
|
/// Notifies the manager that the controller received new data.
|
||||||
- (void)newDataReceivedInViewController:(nonnull UIViewController *)viewController;
|
- (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)
|
/// Call on a manager when a view controller will be displayed. (Mostly called by other managers)
|
||||||
- (void)willDisplayViewController:(nonnull UIViewController *)viewController;
|
- (void)willDisplayViewController:(nonnull UIViewController *)viewController;
|
||||||
|
|
||||||
|
|||||||
@ -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:)]) {
|
if (self.delegate && [self.delegate respondsToSelector:@selector(navigationController:prepareDisplayForViewController:)]) {
|
||||||
[self.delegate navigationController:navigationController
|
[self.delegate navigationController:navigationController
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user