Home

Awesome

DRCircularProgress (iOS)

Circular progress view for iOS apps. Compatible with iOS 7 and later, tested under iOS 7 and iOS 8.

DRCircularProgress iOS screenshot 1 DRCircularProgress iOS screenshot 2

Features

DRCircularProgressView *progressView = ...
[UIView animateWithDuration:3 animations:^{
    progressView.progressValue = 1.f; 
}];

DRCircularProgress iOS screenshot 3

Instalation

You can integrate DRCircularProgress with your project using CocoaPods. To do so, you will need to add one of the following lines to your Podfile:

For stable release (recommended):

pod 'DRCircularProgress', '~> 1.0.3'

Which creates dependency for version >= 1.0.3 and < 1.1

For most recent or exact development version (not recommended on production):

pod 'DRCircularProgress', :git => 'https://github.com/darrarski/DRCircularProgress-iOS.git', :tag => 'VERSION_TAG'

Where VERSION_TAG you should put tag name for given version (ex. "v1.0.3"). It is recommended to set version explicity instead of using most recent version, as backward compatibility is not warranted.

You can also download zip archive of given release from releases page.

Usage

Check out included example project.

Changelog

v1.0.3
v1.0.2
v1.0.1
v1.0.0
v0.1.0

License

The MIT License (MIT) - check out included LICENSE file.