https://github.com/jovins/loaderbutton
LoaderButton is a very interesting animation loading button.
https://github.com/jovins/loaderbutton
animations cocoapods loading swift4 uibutton
Last synced: about 2 months ago
JSON representation
LoaderButton is a very interesting animation loading button.
- Host: GitHub
- URL: https://github.com/jovins/loaderbutton
- Owner: Jovins
- License: mit
- Created: 2018-06-22T08:29:47.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-22T19:06:37.000Z (almost 7 years ago)
- Last Synced: 2025-04-13T14:08:19.641Z (about 2 months ago)
- Topics: animations, cocoapods, loading, swift4, uibutton
- Language: Swift
- Size: 1.04 MB
- Stars: 17
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## LoaderButton
    

### Example
- To run the example project, clone the repo, and run `pod install` from the Example directory first.
### Screenshots

### Requirements
- iOS 9.0 or later
- Swift 3.0 or later### Installation
- LoaderButton is available through [CocoaPods](https://cocoapods.org). To install it, simply add the following line to your Podfile:
```
pod 'LoaderButton'
``````
import UIKit
import LoaderButton
```- Usage example
```
/// start animation
button.startAnimate(loaderType: .rotateChase, loaderColor: .white, complete: nil)/// stop animation
button.stopAnimate(complete: nil)
```### Author
### License
- LoaderButton is available under the MIT license. See the LICENSE file for more info.
### Inspired
- LoaderButton animations inspired from [NVActivityIndicatorView](https://github.com/ninjaprox/NVActivityIndicatorView)