├── .swift-version ├── .travis.yml ├── CellAnimator.podspec ├── CellAnimator.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── lorenalexm.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── CellAnimator.xcscheme └── xcuserdata │ └── williamarchimede.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── CellAnimator ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CellAnimator.swift ├── Info.plist └── ViewController.swift ├── LICENSE └── README.md /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CellAnimator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator.podspec -------------------------------------------------------------------------------- /CellAnimator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CellAnimator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CellAnimator.xcodeproj/project.xcworkspace/xcuserdata/lorenalexm.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator.xcodeproj/project.xcworkspace/xcuserdata/lorenalexm.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CellAnimator.xcodeproj/xcshareddata/xcschemes/CellAnimator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator.xcodeproj/xcshareddata/xcschemes/CellAnimator.xcscheme -------------------------------------------------------------------------------- /CellAnimator.xcodeproj/xcuserdata/williamarchimede.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator.xcodeproj/xcuserdata/williamarchimede.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CellAnimator/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator/AppDelegate.swift -------------------------------------------------------------------------------- /CellAnimator/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CellAnimator/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CellAnimator/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CellAnimator/CellAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator/CellAnimator.swift -------------------------------------------------------------------------------- /CellAnimator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator/Info.plist -------------------------------------------------------------------------------- /CellAnimator/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/CellAnimator/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CellAnimator/HEAD/README.md --------------------------------------------------------------------------------