diff --git a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m index 2b49d66..957b3f1 100644 --- a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m +++ b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m @@ -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 {