All Projects → talthent → TCProgressBar

talthent / TCProgressBar

Licence: MIT license
Simple and clean progress bar

Programming Languages

shell
77523 projects
swift
15916 projects
objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to TCProgressBar

Progress Bar.sh
Simple & sexy progress bar for `bash`, give it a duration and it will do the rest.
Stars: ✭ 155 (+355.88%)
Mutual labels:  progressbar
Chartprogressbar Android
Draw a chart with progress bar style
Stars: ✭ 213 (+526.47%)
Mutual labels:  progressbar
Examples wxWidgets
Shows how to use wxWidgets controls only by programming code (c++17).
Stars: ✭ 116 (+241.18%)
Mutual labels:  progressbar
Linearprogressbar
Simple progress bar for iOS
Stars: ✭ 166 (+388.24%)
Mutual labels:  progressbar
Circularprogressbar
Circular ProgressBar is a custom control for WinForm with animation.
Stars: ✭ 191 (+461.76%)
Mutual labels:  progressbar
React Sweet Progress
A way to quickly add a progress bar to react app 🌈
Stars: ✭ 239 (+602.94%)
Mutual labels:  progressbar
Rxtool
Android开发人员不得不收集的工具类集合 | 支付宝支付 | 微信支付(统一下单) | 微信分享 | Zip4j压缩(支持分卷压缩与加密) | 一键集成UCrop选择圆形头像 | 一键集成二维码和条形码的扫描与生成 | 常用Dialog | WebView的封装可播放视频 | 仿斗鱼滑动验证码 | Toast封装 | 震动 | GPS | Location定位 | 图片缩放 | Exif 图片添加地理位置信息(经纬度) | 蛛网等级 | 颜色选择器 | ArcGis | VTPK | 编译运行一下说不定会找到惊喜
Stars: ✭ 11,567 (+33920.59%)
Mutual labels:  progressbar
vue-progressbar-component
[CSS GPU Animation] Simple progressbar for vuejs
Stars: ✭ 13 (-61.76%)
Mutual labels:  progressbar
Progress dialog
A light weight library to easily manage a progress dialog with simple steps whenever you need to do it. You can easily show and hide it.
Stars: ✭ 196 (+476.47%)
Mutual labels:  progressbar
shell-progressbar
Make a progress bar GUI on terminal platform (Shell script)
Stars: ✭ 39 (+14.71%)
Mutual labels:  progressbar
React Nprogress
⌛️ A React primitive for building slim progress bars.
Stars: ✭ 173 (+408.82%)
Mutual labels:  progressbar
Downloader Cli
A simple downloader written in Python with an awesome customizable progressbar.
Stars: ✭ 186 (+447.06%)
Mutual labels:  progressbar
Floatingmusicmenu
一款可用于音乐播放器的悬浮菜单按钮(A floating music menu)
Stars: ✭ 247 (+626.47%)
Mutual labels:  progressbar
React Spinners Kit
A collection of loading spinners with React.js
Stars: ✭ 158 (+364.71%)
Mutual labels:  progressbar
ProgressBar
Beautiful progress bar for android
Stars: ✭ 62 (+82.35%)
Mutual labels:  progressbar
Zzhorizontalprogressbar
水平进度条,支持渐变色和二级进度
Stars: ✭ 153 (+350%)
Mutual labels:  progressbar
Mkmagneticprogress
A circular progress bar for iOS written in Swift
Stars: ✭ 214 (+529.41%)
Mutual labels:  progressbar
goterminal
A cross-platform Go-library for updating progress in terminal.
Stars: ✭ 56 (+64.71%)
Mutual labels:  progressbar
Write-ProgressEx
Write-ProgressEx is a powershell advanced function that extends the Write-Progress cmdlet.
Stars: ✭ 28 (-17.65%)
Mutual labels:  progressbar
MatlabProgressBar
This MATLAB class provides a smart progress bar like tqdm in the command window and is optimized for progress information in simple iterations or large frameworks with full support of parallel parfor loops provided by the MATLAB Parallel Computing Toolbox.
Stars: ✭ 44 (+29.41%)
Mutual labels:  progressbar

TCProgressBar

Simple and clean progress bar.

Demo

alt text

Installation

Cocoapods

Install Cocoapods

$ gem install cocoapods

Add TCProgressBar in your Podfile.

use_frameworks!

pod 'TCProgressBar'

Install the pod

$ pod install

Manually

Copy TCProgressBar folder to your project. Enjoy.

Usage

Interface Builder

  • Drag a UIView to you view, and change its class to TCProgressBar alt text

  • Click Attributes Inspector alt text and notice the new Progress Bar section on top

alt text

Changes the values as you want and notice TCProgressBar dynamically changes.

Code

  • Create a new TCProgressBar
let progressBar = TCProgressBar(frame: CGRect(x: 0,
                                              y: 0,
                                              width: 200,
                                              height: 20))
  • Set the values as you like
progressBar.outlineColor = .black
progressBar.outlineWidth = 2 
progressBar.spacing = 4
progressBar.progressColor = .darkGray
progressBar.backgroundColor = .lightGray
progressBar.value = 0.7
  • Add TCProgressBar to the view
self.view.addSubview(progressBar)

That's it!

LICENSE

TCProgressBar is available under the MIT license. See the LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].