InStatDownloadButton
示例
要运行示例项目,请克隆仓库,然后先从示例目录中运行pod install
。
自定义
func setupProgressView() {
downloadButton.progressView.startAngle = -90
downloadButton.progressView.progressThickness = 0.2
downloadButton.progressView.trackThickness = 0.6
downloadButton.progressView.clockwise = true
downloadButton.progressView.gradientRotateSpeed = 2
downloadButton.progressView.roundedCorners = false
downloadButton.progressView.glowMode = .forward
downloadButton.progressView.glowAmount = 0.9
downloadButton.progressView.stopColor = UIColor.red.cgColor
downloadButton.progressView.set(colors: UIColor.cyan, UIColor.orange)
}
func setupIndicatorView() {
downloadButton.indicatorView.startAngle = -90
downloadButton.indicatorView.progressThickness = 0.2
downloadButton.indicatorView.trackThickness = 0.6
downloadButton.indicatorView.gradientRotateSpeed = 2
downloadButton.indicatorView.roundedCorners = false
downloadButton.indicatorView.glowMode = .forward
downloadButton.indicatorView.glowAmount = 0.9
downloadButton.indicatorView.set(colors: UIColor.cyan)
downloadButton.indicatorView.trackColor = .black
}
需求
安装
InStatDownloadButton可通过CocoaPods使用。要安装它,只需简单地在您的Podfile中添加以下行
pod 'InStatDownloadButton'
作者
Beslan Tularov | @JiromTomson
许可证
MIT License
Copyright (c) 2018 Beslan Tularov
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.