├── .gitignore ├── LICENSE.md ├── README.md ├── Resources ├── AppIcon.sketch │ ├── Data │ ├── QuickLook │ │ ├── Preview.png │ │ └── Thumbnail.png │ ├── metadata │ └── version └── DownArrow.sketch │ ├── Data │ ├── QuickLook │ ├── Preview.png │ └── Thumbnail.png │ ├── metadata │ └── version ├── SpringAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── matt.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── SpringAnimation ├── AbstractClass.h ├── Base.lproj │ └── Main_iPad.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Spring.png │ │ └── Spring@2x.png │ ├── DownArrow.imageset │ │ ├── Contents.json │ │ ├── DownArrow.png │ │ └── DownArrow@2x.png │ ├── LaunchImage.launchimage │ │ └── Contents.json │ └── Play.imageset │ │ ├── Contents.json │ │ ├── Play.png │ │ └── Play@2x.png ├── MTZAnimationSelectTableViewController.h ├── MTZAnimationSelectTableViewController.m ├── MTZAppDelegate.h ├── MTZAppDelegate.m ├── MTZPlaybackControlsView.h ├── MTZPlaybackControlsView.m ├── MTZSpringAnimationExpandViewController.h ├── MTZSpringAnimationExpandViewController.m ├── MTZSpringAnimationExpandViewController.xib ├── MTZSpringAnimationParametersViewController.h ├── MTZSpringAnimationParametersViewController.m ├── MTZSpringAnimationParametersViewController.xib ├── MTZSpringAnimationRotateViewController.h ├── MTZSpringAnimationRotateViewController.m ├── MTZSpringAnimationRotateViewController.xib ├── MTZSpringAnimationTranslateViewController.h ├── MTZSpringAnimationTranslateViewController.m ├── MTZSpringAnimationTranslateViewController.xib ├── MTZSpringAnimationViewerController.h ├── MTZSpringAnimationViewerController.m ├── MTZViewController.h ├── MTZViewController.m ├── SpringAnimation-Info.plist ├── SpringAnimation-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m ├── SpringAnimationTests ├── SpringAnimationTests-Info.plist ├── SpringAnimationTests.m └── en.lproj │ └── InfoPlist.strings ├── demo.gif └── demo.mov /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/README.md -------------------------------------------------------------------------------- /Resources/AppIcon.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/Resources/AppIcon.sketch/Data -------------------------------------------------------------------------------- /Resources/AppIcon.sketch/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/Resources/AppIcon.sketch/QuickLook/Preview.png -------------------------------------------------------------------------------- /Resources/AppIcon.sketch/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/Resources/AppIcon.sketch/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /Resources/AppIcon.sketch/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/Resources/AppIcon.sketch/metadata -------------------------------------------------------------------------------- /Resources/AppIcon.sketch/version: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /Resources/DownArrow.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/Resources/DownArrow.sketch/Data -------------------------------------------------------------------------------- /Resources/DownArrow.sketch/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/Resources/DownArrow.sketch/QuickLook/Preview.png -------------------------------------------------------------------------------- /Resources/DownArrow.sketch/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/Resources/DownArrow.sketch/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /Resources/DownArrow.sketch/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/Resources/DownArrow.sketch/metadata -------------------------------------------------------------------------------- /Resources/DownArrow.sketch/version: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /SpringAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SpringAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SpringAnimation.xcodeproj/xcuserdata/matt.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation.xcodeproj/xcuserdata/matt.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SpringAnimation/AbstractClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/AbstractClass.h -------------------------------------------------------------------------------- /SpringAnimation/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/AppIcon.appiconset/Spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/AppIcon.appiconset/Spring.png -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/AppIcon.appiconset/Spring@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/AppIcon.appiconset/Spring@2x.png -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/DownArrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/DownArrow.imageset/Contents.json -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/DownArrow.imageset/DownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/DownArrow.imageset/DownArrow.png -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/DownArrow.imageset/DownArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/DownArrow.imageset/DownArrow@2x.png -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/Play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/Play.imageset/Contents.json -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/Play.imageset/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/Play.imageset/Play.png -------------------------------------------------------------------------------- /SpringAnimation/Images.xcassets/Play.imageset/Play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/Images.xcassets/Play.imageset/Play@2x.png -------------------------------------------------------------------------------- /SpringAnimation/MTZAnimationSelectTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZAnimationSelectTableViewController.h -------------------------------------------------------------------------------- /SpringAnimation/MTZAnimationSelectTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZAnimationSelectTableViewController.m -------------------------------------------------------------------------------- /SpringAnimation/MTZAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZAppDelegate.h -------------------------------------------------------------------------------- /SpringAnimation/MTZAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZAppDelegate.m -------------------------------------------------------------------------------- /SpringAnimation/MTZPlaybackControlsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZPlaybackControlsView.h -------------------------------------------------------------------------------- /SpringAnimation/MTZPlaybackControlsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZPlaybackControlsView.m -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationExpandViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationExpandViewController.h -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationExpandViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationExpandViewController.m -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationExpandViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationExpandViewController.xib -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationParametersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationParametersViewController.h -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationParametersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationParametersViewController.m -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationParametersViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationParametersViewController.xib -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationRotateViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationRotateViewController.h -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationRotateViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationRotateViewController.m -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationRotateViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationRotateViewController.xib -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationTranslateViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationTranslateViewController.h -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationTranslateViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationTranslateViewController.m -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationTranslateViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationTranslateViewController.xib -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationViewerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationViewerController.h -------------------------------------------------------------------------------- /SpringAnimation/MTZSpringAnimationViewerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZSpringAnimationViewerController.m -------------------------------------------------------------------------------- /SpringAnimation/MTZViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZViewController.h -------------------------------------------------------------------------------- /SpringAnimation/MTZViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/MTZViewController.m -------------------------------------------------------------------------------- /SpringAnimation/SpringAnimation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/SpringAnimation-Info.plist -------------------------------------------------------------------------------- /SpringAnimation/SpringAnimation-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/SpringAnimation-Prefix.pch -------------------------------------------------------------------------------- /SpringAnimation/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SpringAnimation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimation/main.m -------------------------------------------------------------------------------- /SpringAnimationTests/SpringAnimationTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimationTests/SpringAnimationTests-Info.plist -------------------------------------------------------------------------------- /SpringAnimationTests/SpringAnimationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/SpringAnimationTests/SpringAnimationTests.m -------------------------------------------------------------------------------- /SpringAnimationTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/demo.gif -------------------------------------------------------------------------------- /demo.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdznr/Spring-Animation/HEAD/demo.mov --------------------------------------------------------------------------------