https://github.com/augustrush/artransitionanimator
ARTransitionAnimator is a simple class which custom UIViewController transition animation.
https://github.com/augustrush/artransitionanimator
Last synced: 8 months ago
JSON representation
ARTransitionAnimator is a simple class which custom UIViewController transition animation.
- Host: GitHub
- URL: https://github.com/augustrush/artransitionanimator
- Owner: AugustRush
- License: mit
- Created: 2015-05-11T05:33:15.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-03-21T12:20:38.000Z (about 10 years ago)
- Last Synced: 2025-04-10T03:54:43.856Z (about 1 year ago)
- Language: Objective-C
- Size: 1.46 MB
- Stars: 323
- Watchers: 14
- Forks: 39
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ARTransitionAnimator
ARTransitionAnimator is a simple class which custom UIViewController transition animation.
# demo Gifs

# Usage
```
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];
```
# Install
* pod 'ARTransitionAnimator', :git => 'https://github.com/AugustRush/ARTransitionAnimator.git'
# TO DO
* add more animations
* Improve the show of animation
现在的版本只是写了很少的一部分,有很多的地方需要改进,由于最近项目上时间比较紧,耽搁了一些开源代码的进度,希望大家可以一起不断的完善这些代码。可以到我的github主页'https://github.com/AugustRush' fork 我的其他开源代码,帮助我不断的完善和改进。