├── .gitignore ├── AnimatablePlayButton.podspec ├── AnimatablePlayButton.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── AnimatablePlayButton.xcscheme ├── AnimatablePlayButton ├── AnimatablePlayButton.h ├── AnimatablePlayButton.swift └── Info.plist ├── AnimatablePlayButtonExample ├── AnimatablePlayButtonExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── AnimatablePlayButtonExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── README.md └── Screenshots └── example01.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/.gitignore -------------------------------------------------------------------------------- /AnimatablePlayButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButton.podspec -------------------------------------------------------------------------------- /AnimatablePlayButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimatablePlayButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnimatablePlayButton.xcodeproj/xcshareddata/xcschemes/AnimatablePlayButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButton.xcodeproj/xcshareddata/xcschemes/AnimatablePlayButton.xcscheme -------------------------------------------------------------------------------- /AnimatablePlayButton/AnimatablePlayButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButton/AnimatablePlayButton.h -------------------------------------------------------------------------------- /AnimatablePlayButton/AnimatablePlayButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButton/AnimatablePlayButton.swift -------------------------------------------------------------------------------- /AnimatablePlayButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButton/Info.plist -------------------------------------------------------------------------------- /AnimatablePlayButtonExample/AnimatablePlayButtonExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButtonExample/AnimatablePlayButtonExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimatablePlayButtonExample/AnimatablePlayButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButtonExample/AnimatablePlayButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnimatablePlayButtonExample/AnimatablePlayButtonExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButtonExample/AnimatablePlayButtonExample/AppDelegate.swift -------------------------------------------------------------------------------- /AnimatablePlayButtonExample/AnimatablePlayButtonExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButtonExample/AnimatablePlayButtonExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AnimatablePlayButtonExample/AnimatablePlayButtonExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButtonExample/AnimatablePlayButtonExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AnimatablePlayButtonExample/AnimatablePlayButtonExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButtonExample/AnimatablePlayButtonExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AnimatablePlayButtonExample/AnimatablePlayButtonExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButtonExample/AnimatablePlayButtonExample/Info.plist -------------------------------------------------------------------------------- /AnimatablePlayButtonExample/AnimatablePlayButtonExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/AnimatablePlayButtonExample/AnimatablePlayButtonExample/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/example01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/AnimatablePlayButton/HEAD/Screenshots/example01.gif --------------------------------------------------------------------------------