├── .gitignore ├── .travis.yml ├── Example ├── LoaderButton.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── LoaderButton-Example.xcscheme ├── LoaderButton.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── LoaderButton │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── LoaderButton.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── LoaderButton │ │ ├── Info.plist │ │ ├── LoaderButton-dummy.m │ │ ├── LoaderButton-prefix.pch │ │ ├── LoaderButton-umbrella.h │ │ ├── LoaderButton.modulemap │ │ └── LoaderButton.xcconfig │ │ ├── Pods-LoaderButton_Example │ │ ├── Info.plist │ │ ├── Pods-LoaderButton_Example-acknowledgements.markdown │ │ ├── Pods-LoaderButton_Example-acknowledgements.plist │ │ ├── Pods-LoaderButton_Example-dummy.m │ │ ├── Pods-LoaderButton_Example-frameworks.sh │ │ ├── Pods-LoaderButton_Example-resources.sh │ │ ├── Pods-LoaderButton_Example-umbrella.h │ │ ├── Pods-LoaderButton_Example.debug.xcconfig │ │ ├── Pods-LoaderButton_Example.modulemap │ │ └── Pods-LoaderButton_Example.release.xcconfig │ │ └── Pods-LoaderButton_Tests │ │ ├── Info.plist │ │ ├── Pods-LoaderButton_Tests-acknowledgements.markdown │ │ ├── Pods-LoaderButton_Tests-acknowledgements.plist │ │ ├── Pods-LoaderButton_Tests-dummy.m │ │ ├── Pods-LoaderButton_Tests-frameworks.sh │ │ ├── Pods-LoaderButton_Tests-resources.sh │ │ ├── Pods-LoaderButton_Tests-umbrella.h │ │ ├── Pods-LoaderButton_Tests.debug.xcconfig │ │ ├── Pods-LoaderButton_Tests.modulemap │ │ └── Pods-LoaderButton_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── Images ├── loaderbutton.gif └── loaderbutton.png ├── LICENSE ├── LoaderButton.podspec ├── LoaderButton ├── Animatons │ ├── LoaderBallBeatAnimation.swift │ ├── LoaderBallMultipleRotateAnimation.swift │ ├── LoaderBallPulseAnimation.swift │ ├── LoaderBallPulseRotateAnimation.swift │ ├── LoaderBallRotateAnimation.swift │ ├── LoaderButtonAnimationDelegate.swift │ ├── LoaderCircleChaseAnimation.swift │ ├── LoaderCircleNarrowAnimation.swift │ ├── LoaderCircleRotateAnimation.swift │ ├── LoaderLineFadeAnimation.swift │ ├── LoaderPacmanAnimation.swift │ └── LoaderRotateChaseAnimation.swift ├── LoaderButton.swift ├── LoaderLayer.swift ├── LoaderShape.swift └── LoaderTypes.swift ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/LoaderButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LoaderButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LoaderButton.xcodeproj/xcshareddata/xcschemes/LoaderButton-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton.xcodeproj/xcshareddata/xcschemes/LoaderButton-Example.xcscheme -------------------------------------------------------------------------------- /Example/LoaderButton.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LoaderButton.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/LoaderButton/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton/AppDelegate.swift -------------------------------------------------------------------------------- /Example/LoaderButton/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/LoaderButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/LoaderButton/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/LoaderButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton/Info.plist -------------------------------------------------------------------------------- /Example/LoaderButton/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/LoaderButton/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LoaderButton.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Local Podspecs/LoaderButton.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoaderButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/LoaderButton/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoaderButton/LoaderButton-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/LoaderButton/LoaderButton-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoaderButton/LoaderButton-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/LoaderButton/LoaderButton-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoaderButton/LoaderButton-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/LoaderButton/LoaderButton-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoaderButton/LoaderButton.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/LoaderButton/LoaderButton.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoaderButton/LoaderButton.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/LoaderButton/LoaderButton.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Example/Pods-LoaderButton_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Pods/Target Support Files/Pods-LoaderButton_Tests/Pods-LoaderButton_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Images/loaderbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Images/loaderbutton.gif -------------------------------------------------------------------------------- /Images/loaderbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/Images/loaderbutton.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LICENSE -------------------------------------------------------------------------------- /LoaderButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton.podspec -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderBallBeatAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderBallBeatAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderBallMultipleRotateAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderBallMultipleRotateAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderBallPulseAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderBallPulseAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderBallPulseRotateAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderBallPulseRotateAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderBallRotateAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderBallRotateAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderButtonAnimationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderButtonAnimationDelegate.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderCircleChaseAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderCircleChaseAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderCircleNarrowAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderCircleNarrowAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderCircleRotateAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderCircleRotateAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderLineFadeAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderLineFadeAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderPacmanAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderPacmanAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/Animatons/LoaderRotateChaseAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/Animatons/LoaderRotateChaseAnimation.swift -------------------------------------------------------------------------------- /LoaderButton/LoaderButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/LoaderButton.swift -------------------------------------------------------------------------------- /LoaderButton/LoaderLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/LoaderLayer.swift -------------------------------------------------------------------------------- /LoaderButton/LoaderShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/LoaderShape.swift -------------------------------------------------------------------------------- /LoaderButton/LoaderTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/LoaderButton/LoaderTypes.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jovins/LoaderButton/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------