Skip to content

carabina/ActivityRings

 
 

Repository files navigation

ActivityRings

Version Package Managers License Contact

ActivityRings is an attempt to recreate the ring controls in Apple’s Activity app.

This project is a SpriteKit port of Max Konovalov’s pure UIKit implementation, MKRingProgressView.

Demo

Requirements

  • Swift 4
  • iOS 8

Installation

ActivityRings is available via CocoaPods and Carthage.

CocoaPods

To install ActivityRings using CocoaPods, add the following line to your Podfile:

pod 'ActivityRings'

Carthage

To install ActivityRings using Carthage, add the following line to your Cartfile:

github "HarshilShah/ActivityRings"

Usage

Basics

To get started, import ActivityRings, and use the ActivityRingView class within it to display the control.

Customisation

The ringWidth, the startColor, the endColor, and the backgroundRingColor can all be customised.

Progress

The progress of the ring can be set with or without animation.

To set the progress without animation, simply update the value of the progress variable.

To animate the progress, use the animateProgress method, which accepts two arguments:

  • The desired final progress value
  • The animation duration

Notes

Some notes on performance:

  • Since this control was written in SpriteKit, it relies heavily on the GPU, and so will not perform well or accurately in the simulator.
  • The initial setup process is somewhat expensive, so animating the progress directly after presenting the view can cause some hiccups. This is being worked on, but in the meantime, delaying the animation by a second or so works around the issue.

Apps Using ActivityRings

Feel free to submit a PR if you’re using this library in your apps.

Author

Written by Harshil Shah. You can find me on Twitter.

The original UIKit implementation was written by Max Konovalov.

License

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

About

An attempt to recreate the ring controls in Apple’s Activity app

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 93.2%
  • Ruby 4.3%
  • Objective-C 2.5%