ARTransitionAnimator is a simple class which custom UIViewController transition animation.
self.transitionAnimator = [[ARTransitionAnimator alloc] init]; self.transitionAnimator.transitionDuration = 0.6; self.transitionAnimator.transitionStyle = ARTransitionStyleMaterial|ARTransitionStyleLeftToRight; FirstViewController *viewController = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil]; self.navigationController.delegate = self.transitionAnimator; // set delegate [self.navigationController pushViewController:viewController animated:YES];
pod 'ARTransitionAnimator', :git => ' https://github.com/AugustRush/ARTransitionAnimator.git '
add more animations
Improve the show of animation
现在的版本只是写了很少的一部分,有很多的地方需要改进,由于最近项目上时间比较紧,耽搁了一些开源代码的进度,希望大家可以一起不断的完善这些代码。可以到我的github主页' https://github.com/AugustRush ' fork 我的其他开源代码,帮助我不断的完善和改进。