Merge branch 'feature/swift_subnav' into 'develop'
add missing pass through See merge request BPHV_MIPS/mvm_core!183
This commit is contained in:
commit
11888424f6
@ -884,8 +884,13 @@
|
||||
}
|
||||
}
|
||||
|
||||
- (void)navigationController:(UINavigationController *)navigationController interactiveTransitionWasCanceled:(BOOL)canceled {
|
||||
if (self.delegateObject.presentationDelegate && [self.delegateObject.presentationDelegate respondsToSelector:@selector(navigationController:interactiveTransitionWasCanceled:)]) {
|
||||
[self.delegateObject.presentationDelegate navigationController:navigationController interactiveTransitionWasCanceled:canceled];
|
||||
}
|
||||
}
|
||||
|
||||
- (void)viewController:(UIViewController *)presentingViewController willPresentViewController:(UIViewController *)presentedViewController {
|
||||
|
||||
if ([self.delegateObject.presentationDelegate respondsToSelector:@selector(viewController:willPresentViewController:)]) {
|
||||
[self.delegateObject.presentationDelegate viewController:presentingViewController willPresentViewController:presentedViewController];
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user