Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AlexLittlejohn/ALThreeCircleSpinner
A pulsing spinner view written in swift
https://github.com/AlexLittlejohn/ALThreeCircleSpinner
Last synced: 6 days ago
JSON representation
A pulsing spinner view written in swift
- Host: GitHub
- URL: https://github.com/AlexLittlejohn/ALThreeCircleSpinner
- Owner: AlexLittlejohn
- License: mit
- Archived: true
- Created: 2015-05-04T08:59:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-07-01T08:19:02.000Z (over 2 years ago)
- Last Synced: 2024-11-17T18:04:31.498Z (25 days ago)
- Language: Swift
- Size: 239 KB
- Stars: 42
- Watchers: 5
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - ALThreeCircleSpinner - A pulsing spinner view written in swift. (UI / Activity Indicator)
- awesome-ios-star - ALThreeCircleSpinner - A pulsing spinner view written in swift. (UI / Activity Indicator)
README
# ⚠️ This project is unmaintained
# ALThreeCircleSpinner
A pulsing spinner view written in swift![oc03hg](https://cloud.githubusercontent.com/assets/6511079/12443890/20c350ec-bf10-11e5-8baa-1a7c56a402d4.gif)
### Usage
```swift
// Create your spinner
let spinner = ALThreeCircleSpinner(frame: CGRectMake(0,0,44,44))
addSubview(spinner)
// And thats it, the spinner will start automagically
```
To stop the spinner after its started
```swift
spinner.stopAnimating()
```To start it again
```swift
spinner.startAnimating()
```You can control the color of the spinner using the `color` property and you can set it to stay visible when animation is stopped using the `hidesWhenStopped` property
## Attribution
This spinner is based on the work in the [SpinKit](https://github.com/raymondjavaxx/SpinKit-ObjC) project## License
ALThreeCircleSpinner is available under the MIT license. See the LICENSE file for more info.