add missing pass through

This commit is contained in:
Scott Pfeil 2021-11-02 16:38:57 -04:00
parent 22d2d73b50
commit 35b96b2fde

View File

@ -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:)]) {