Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Classes/AHKNavigationController.m
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,20 @@ - (void)navigationController:(UINavigationController *)navigationController
}
}

- (nullable id <UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
animationControllerForOperation:(UINavigationControllerOperation)operation
fromViewController:(UIViewController *)fromVC
toViewController:(UIViewController *)toVC {
if (self.realDelegate != nil && [self.realDelegate respondsToSelector:_cmd]) {
return [self.realDelegate navigationController:navigationController
animationControllerForOperation:operation
fromViewController:fromVC
toViewController:toVC];
}

return nil;
}

#pragma mark - UIGestureRecognizerDelegate

- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
Expand Down