RAProgressRing is the simplest approach to bringing circular progress in your application with minimal code.
- It's customisable using @IBInspectable
- Set ring width, track and progress color.
- Animate the progress based on needed duration.
@IBOutlet var progressRing: RAProgressRing!
progressRing.trackColor = .red.withAlphaComponent(0.25)
progressRing.circleColor = .red
progressRing.animationDuration = 3
progressRing.setProgress(1, animated: true)