implemented prepareForDisplay protocol
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
parent
7bc26a8e46
commit
54ba48bb12
@ -842,6 +842,11 @@
|
||||
}
|
||||
|
||||
#pragma mark - Presentation Delegate
|
||||
- (void)navigationController:(UINavigationController *)navigationController prepareDisplayForViewController:(UIViewController *)viewController {
|
||||
if ([self.delegateObject.presentationDelegate respondsToSelector:@selector(navigationController:prepareDisplayForViewController:)]) {
|
||||
[self.delegateObject.presentationDelegate navigationController:navigationController prepareDisplayForViewController:viewController];
|
||||
}
|
||||
}
|
||||
|
||||
- (void)navigationController:(UINavigationController *)navigationController willDisplayViewController:(UIViewController *)viewController {
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user