add missing pass through
This commit is contained in:
parent
22d2d73b50
commit
35b96b2fde
@ -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:)]) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user