MaskProgressView is a custom progress view which can be masked with an image containing an alpha channel.
Specify "MaskProgressView" in your Cartfile
:
github "teambition/MaskProgressView"
progressView.direction = .vertical
progressView.maskImage = UIImage(named: "exampleIcon")
progressView.frontColor = UIColor(white: 195 / 255, alpha: 1)
progressView.backColor = UIColor(white: 235 / 255, alpha: 1)
progressView.animationDuration = 0.5
progressView.setProgress(0.35, animated: true)
print(progressView.progress)
iOS 8.0
MaskProgressView is released under the MIT license. See LICENSE for details.
Have a question? Please open an issue!