https://github.com/jwd-ali/jprogressview
Add Progress Animation in just 2 steps in your view developed using CAShapelayer and UIBezierPath drawing with CABasicAnimation.
https://github.com/jwd-ali/jprogressview
activityindicator activityindicatorview animation cabasicanimation calayer carthage cashapelayer cocoapods progress progressview ui ui-components uibezierpath xcode
Last synced: 9 months ago
JSON representation
Add Progress Animation in just 2 steps in your view developed using CAShapelayer and UIBezierPath drawing with CABasicAnimation.
- Host: GitHub
- URL: https://github.com/jwd-ali/jprogressview
- Owner: jwd-ali
- License: mit
- Created: 2020-09-03T11:55:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-06T06:49:32.000Z (over 5 years ago)
- Last Synced: 2025-04-04T04:51:12.555Z (10 months ago)
- Topics: activityindicator, activityindicatorview, animation, cabasicanimation, calayer, carthage, cashapelayer, cocoapods, progress, progressview, ui, ui-components, uibezierpath, xcode
- Language: Swift
- Homepage:
- Size: 2.46 MB
- Stars: 15
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# JProgressView
> Add Progress Animation in just 2 steps in your view
[](https://travis-ci.org/jwd-ali/RingPieChart)
[](https://cocoapods.org/pods/Drag3DRotateCard)
[](https://github.com/Carthage/Carthage)
[](https://cocoapods.org/pods/Drag3DRotateCard)
[](https://cocoapods.org/pods/Drag3DRotateCard)
[](https://swift.org)
___
## Requirements
- iOS 10.0+ / Mac OS X 10.9+ / watchOS 2.0+ / tvOS 9.0+
- Xcode 8.0+
## Installation
### [CocoaPods](http://cocoapods.org)
To integrate **JProgressView** into your Xcode project using CocoaPods, specify it in your `Podfile`:
```ruby
use_frameworks!
pod 'JProgressView'
```
Then, run the following command:
```bash
$ pod install
```
### [Carthage](http://github.com/Carthage/Carthage)
To integrate `JProgressView` into your Xcode project using Carthage, specify it in your `Cartfile`:
```ogdl
github "jwd-ali/JProgressView"
```
### Manually
If you prefer not to use a dependency manager, you can integrate **JProgressView** into your project manually.
- Add sources into your project:
- Drag `ProgressView.swift` and `CALayer+Extension.swift`
## Usage
> If you are using any dependency manager (pods , carthage , package manager)to integrate JProgressView. Import ProgressView first:
> ```swift
> import ProgressView
> ```
> And for Manuall install you dont need to import anything
You need to simply initiate progressView with four colours if you want to customise colors initiate like this
> ```swift
> var progessView = ProgressView()
> ```
**OR**
> ```swift
> var progessView = ProgressView(colors: [.black, .red, .green, .yellow])
> ```
Then in which view you want to show progress call
> ```swift
>progessView.StartAnimating(in: self.view)
> ```
To stop and hide call
> ```swift
> progessView.stopAnimating()
> ```
For better understanding framework includes example project as well
Congratulations! You're done.
## Contributing
I’d love to have help on this project. For small changes please [open a pull request](https://github.com/jwd-ali/JProgressView/pulls), for larger changes please [open an issue](https://github.com/jwd-ali/JProgressView/issues) first to discuss what you’d like to see.
License
-------
JProgressView is under [MIT](https://opensource.org/licenses/MIT). See [LICENSE](LICENSE) file for more info.