├── .gitignore ├── .travis.yml ├── Classes ├── UIView+AnimationExtensions.h └── UIView+AnimationExtensions.m ├── Example ├── UIViewAnimationExtensions.xcodeproj │ └── project.pbxproj └── UIViewAnimationExtensions │ ├── Base.lproj │ └── Main.storyboard │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── BackgroundTile.imageset │ │ ├── BackgroundTile@2x.png │ │ └── Contents.json │ ├── Box.imageset │ │ ├── Box@2x.png │ │ └── Contents.json │ ├── Button.imageset │ │ ├── Button@2x.png │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── RAFAppDelegate.h │ ├── RAFAppDelegate.m │ ├── RAFDetailViewController.h │ ├── RAFDetailViewController.m │ ├── RAFMasterViewController.h │ ├── RAFMasterViewController.m │ ├── UIViewAnimationExtensions-Info.plist │ ├── UIViewAnimationExtensions-Prefix.pch │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── LICENSE ├── README.md └── UIView+AnimationExtensions.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/.travis.yml -------------------------------------------------------------------------------- /Classes/UIView+AnimationExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Classes/UIView+AnimationExtensions.h -------------------------------------------------------------------------------- /Classes/UIView+AnimationExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Classes/UIView+AnimationExtensions.m -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/Images.xcassets/BackgroundTile.imageset/BackgroundTile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/Images.xcassets/BackgroundTile.imageset/BackgroundTile@2x.png -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/Images.xcassets/BackgroundTile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/Images.xcassets/BackgroundTile.imageset/Contents.json -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/Images.xcassets/Box.imageset/Box@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/Images.xcassets/Box.imageset/Box@2x.png -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/Images.xcassets/Box.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/Images.xcassets/Box.imageset/Contents.json -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/Images.xcassets/Button.imageset/Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/Images.xcassets/Button.imageset/Button@2x.png -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/Images.xcassets/Button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/Images.xcassets/Button.imageset/Contents.json -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/RAFAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/RAFAppDelegate.h -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/RAFAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/RAFAppDelegate.m -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/RAFDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/RAFDetailViewController.h -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/RAFDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/RAFDetailViewController.m -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/RAFMasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/RAFMasterViewController.h -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/RAFMasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/RAFMasterViewController.m -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/UIViewAnimationExtensions-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/UIViewAnimationExtensions-Info.plist -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/UIViewAnimationExtensions-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/UIViewAnimationExtensions-Prefix.pch -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/UIViewAnimationExtensions/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/Example/UIViewAnimationExtensions/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/README.md -------------------------------------------------------------------------------- /UIView+AnimationExtensions.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3econ/animation-extensions/HEAD/UIView+AnimationExtensions.podspec --------------------------------------------------------------------------------