├── .gitignore ├── .swift-version ├── Cheetah.podspec ├── Cheetah.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Cheetah.xcscheme ├── Cheetah ├── Bezier.swift ├── Cheetah.h ├── Cheetah.swift ├── CheetahConstraintProperties.swift ├── CheetahGroup.swift ├── CheetahLabelProperties.swift ├── CheetahLayerProperties.swift ├── CheetahManager.swift ├── CheetahProperties.swift ├── CheetahViewProperties.swift ├── Easings.swift ├── Info.plist ├── Spring.swift └── UIView+CheetahAnimation.swift ├── CheetahExample ├── CheetahExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CheetahExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── CheetahExampleTV │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - Large.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon - Small.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── CheetahTV ├── CheetahTV.h └── Info.plist ├── CheetahTests ├── CheetahTests.swift └── Info.plist ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Cheetah.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah.podspec -------------------------------------------------------------------------------- /Cheetah.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Cheetah.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Cheetah.xcodeproj/xcshareddata/xcschemes/Cheetah.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah.xcodeproj/xcshareddata/xcschemes/Cheetah.xcscheme -------------------------------------------------------------------------------- /Cheetah/Bezier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/Bezier.swift -------------------------------------------------------------------------------- /Cheetah/Cheetah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/Cheetah.h -------------------------------------------------------------------------------- /Cheetah/Cheetah.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/Cheetah.swift -------------------------------------------------------------------------------- /Cheetah/CheetahConstraintProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/CheetahConstraintProperties.swift -------------------------------------------------------------------------------- /Cheetah/CheetahGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/CheetahGroup.swift -------------------------------------------------------------------------------- /Cheetah/CheetahLabelProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/CheetahLabelProperties.swift -------------------------------------------------------------------------------- /Cheetah/CheetahLayerProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/CheetahLayerProperties.swift -------------------------------------------------------------------------------- /Cheetah/CheetahManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/CheetahManager.swift -------------------------------------------------------------------------------- /Cheetah/CheetahProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/CheetahProperties.swift -------------------------------------------------------------------------------- /Cheetah/CheetahViewProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/CheetahViewProperties.swift -------------------------------------------------------------------------------- /Cheetah/Easings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/Easings.swift -------------------------------------------------------------------------------- /Cheetah/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/Info.plist -------------------------------------------------------------------------------- /Cheetah/Spring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/Spring.swift -------------------------------------------------------------------------------- /Cheetah/UIView+CheetahAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/Cheetah/UIView+CheetahAnimation.swift -------------------------------------------------------------------------------- /CheetahExample/CheetahExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CheetahExample/CheetahExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CheetahExample/CheetahExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExample/AppDelegate.swift -------------------------------------------------------------------------------- /CheetahExample/CheetahExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CheetahExample/CheetahExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CheetahExample/CheetahExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExample/Info.plist -------------------------------------------------------------------------------- /CheetahExample/CheetahExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExample/ViewController.swift -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/AppDelegate.swift -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/Info.plist -------------------------------------------------------------------------------- /CheetahExample/CheetahExampleTV/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahExample/CheetahExampleTV/ViewController.swift -------------------------------------------------------------------------------- /CheetahTV/CheetahTV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahTV/CheetahTV.h -------------------------------------------------------------------------------- /CheetahTV/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahTV/Info.plist -------------------------------------------------------------------------------- /CheetahTests/CheetahTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahTests/CheetahTests.swift -------------------------------------------------------------------------------- /CheetahTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/CheetahTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suguru/Cheetah/HEAD/README.md --------------------------------------------------------------------------------