Ring progress view similar to Activity app on Apple Watch
Features
Progress animation
Customizable start/end and backdrop ring colors
Customizable ring width
Customizable progress line end style
Customizable shadow under progress line end
Progress values above 100% (or 360°) can also be displayed
Installation
CocoaPods
To install MKRingProgressView via CocoaPods, add the following line to your Podfile:
pod 'MKRingProgressView'
Carthage
To install MKRingProgressView via Carthage, add the following line to your Cartfile:
github "maxkonovalov/MKRingProgressView"
Swift Package Manager
Note: Instructions below are for using SwiftPM without the Xcode UI. It’s the easiest to go to your Project Settings -> Swift Packages and add MKRingProgressView from there.
To integrate using Apple’s Swift package manager, without Xcode integration, add the following as a dependency to your Package.swift:
See the example Xcode project. It contains 2 targets:
ProgressRingExample - a simple example containing a single progress ring with adjustable parameters.
ActivityRingsExample - an advanced usage example replicating Activity app by Apple. It also contains additional classes for convenient grouping of 3 ring progress views together.
Interface Builder
MKRingProgressView can be set up in Interface Builder. To use it, set the custom view class to MKRingProgressView. Most of the control’s parameters can be customized in Interface Builder.
MKRingProgressView
Ring progress view similar to Activity app on Apple Watch
Features
Installation
CocoaPods
To install
MKRingProgressView
via CocoaPods, add the following line to your Podfile:Carthage
To install
MKRingProgressView
via Carthage, add the following line to your Cartfile:Swift Package Manager
Note: Instructions below are for using SwiftPM without the Xcode UI. It’s the easiest to go to your Project Settings -> Swift Packages and add MKRingProgressView from there.
To integrate using Apple’s Swift package manager, without Xcode integration, add the following as a dependency to your
Package.swift
:Usage
See the example Xcode project. It contains 2 targets:
Interface Builder
MKRingProgressView
can be set up in Interface Builder. To use it, set the custom view class toMKRingProgressView
. Most of the control’s parameters can be customized in Interface Builder.Code
The
progress
value can be animated the same way you would normally animate any property usingUIView
‘s block-based animations:Performance
To achieve better performance the following options are possible:
gradientImageScale
to lower values like0.5
(defaults to1.0
)startColor
andendColor
to the same valueshadowOpacity
to0.0
allowsAntialiasing
tofalse
Requirements
License
MKRingProgressView
is available under the MIT license. See the LICENSE file for more info.