MKRingProgressView

⭕️ Ring progress view similar to Activity app on Apple Watch

Github星跟蹤圖

MKRingProgressView

Language
Platform
License
Version
Carthage compatible

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"

Usage

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.

Code

let ringProgressView = RingProgressView(frame: CGRect(x: 0, y: 100, width: 100, height: 100))
ringProgressView.startColor = .red
ringProgressView.endColor = .magenta
ringProgressView.ringWidth = 25
ringProgressView.progress = 0.0
view.addSubview(ringProgressView)

The progress value can be animated the same way you would normally animate any property using UIView's block-based animations:

UIView.animate(withDuration: 0.5) {
    ringProgressView.progress = 1.0
}

Performance

To achieve better performance the following options are possible:

  • Set gradientImageScale to lower values like 0.5 (defaults to 1.0)
  • Set startColor and endColor to the same value
  • Set shadowOpacity to 0.0
  • Set allowsAntialiasing to false

Requirements

  • iOS 8.2
  • tvOS 9.0
  • Xcode 10, Swift 4+

License

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

主要指標

概覽
名稱與所有者maxkonovalov/MKRingProgressView
主編程語言Swift
編程語言Swift (語言數: 3)
平台
許可證MIT License
所有者活动
創建於2015-10-22 15:26:51
推送於2023-05-04 21:46:36
最后一次提交2021-08-11 11:15:24
發布數19
最新版本名稱2.3.0 (發布於 2021-08-11 11:15:32)
第一版名稱1.0 (發布於 )
用户参与
星數1.6k
關注者數27
派生數139
提交數103
已啟用問題?
問題數59
打開的問題數7
拉請求數14
打開的拉請求數1
關閉的拉請求數4
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?