这里介绍一下简单实现转场动画,复杂的动画如每个控制器都需要,则需要在父类和自定义导航控制器间进行处理。在很多时候我们只是想在某一个控制器时使用,有时复杂的容易实现,找到一个简单的实现方式反而不易。如何简单的实现呢?
根据网上和后期自己总结写了一些常用的动画,github地址是:https://github.com/leixiang1986/TransationVC
如果喜欢记得Star
//第一步遵守控制器代理
<UINavigationControllerDelegate>
self.navigationController.delegate = self;
//第二步,实现代理方法
- (nullable id <UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
animationControllerForOperation:(UINavigationControllerOperation)operation
fromViewController:(UIViewController *)fromVC
toViewController:(UIViewController *)toVC {
[UIView transitionFromView:fromVC.view toView:toVC.view duration:0.75 options:(UIViewAnimationOptionTransitionFlipFromRight) completion:^(BOOL finished) {
}];
return nil;
}
//Game Over