From 35b96b2fdea6983aa6cbc4e0289480cea821e9e9 Mon Sep 17 00:00:00 2001 From: Scott Pfeil Date: Tue, 2 Nov 2021 16:38:57 -0400 Subject: [PATCH] add missing pass through --- .../MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m index 957b3f1..6ac92d8 100644 --- a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m +++ b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m @@ -884,6 +884,14 @@ } } +- (void)navigationController:(UINavigationController *)navigationController interactiveTransitionWasCanceled:(BOOL)canceled { + if (self.delegateObject.presentationDelegate && [self.delegateObject.presentationDelegate respondsToSelector:@selector(navigationController:interactiveTransitionWasCanceled:)]) { + return [self.delegateObject.presentationDelegate navigationController:navigationController interactiveTransitionWasCanceled:canceled]; + } else { + return; + } +} + - (void)viewController:(UIViewController *)presentingViewController willPresentViewController:(UIViewController *)presentedViewController { if ([self.delegateObject.presentationDelegate respondsToSelector:@selector(viewController:willPresentViewController:)]) {