CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

CircularProgressBar 1.0.4

CircularProgressBar 1.0.4

Maintained by Aman.



  • By
  • Aman

CircularProgressBar

CI Status Version License Platform

Example

var progress : Float = 0

SwiftProgressBar.addCircularProgressBar(view: self.view, type: 1)

SwiftProgressBar.setProgressColor(color: UIColor.red)

Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { (timer) in

    if progress <= 100{

        progress = progress + 10

        SwiftProgressBar.setProgress(progress: progress)

    }else{

        SwiftProgressBar.hideProgressBar()
        
    }

}

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

Requirements

iOS 10+

Xcode 10+

Installation

CircularProgressBar is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'CircularProgressBar'

Author

[email protected], [email protected]

License

CircularProgressBar is available under the MIT license. See the LICENSE file for more info.