yimingtang / TYMProgressBarView

Progress bar similar to the one on iOS's launching screen

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TYMProgressBarView

CI Status Version License Platform

A progress bar which is similar to the one on iOS's launching screen. All the drawing stuffs are implemented with Core Graphics in order to achieve high performance and feel comfortable for resizing.

TYMProgressBarView supports iOS 7.0 and later.

Screenshot

screenshot

Usage

// Create a progress bar view and set its appearance
TYMProgressBarView *progressBarView = [[TYMProgressBarView alloc] initWithFrame:aFrame];
progressBarView.barBorderWidth = 1.0;
progressBarView.barBorderColor = yourColor;

// Add it to your view
[yourView addSubview:progressBarView];

// Set the progress
progressBarView.progress = 0.2f;
progressBarView.progress = 0.5f;

You can also customize the appearance through the UIAppearance proxy. See TYMProgressBarView.h for full documentation.

Installation

Manually

Download the source files or add it as a git submodule. Add TYMProgressBarView.h and TYMProgressBarView.m to your project.

TYMProgressBarView uses Automatic Reference Counting (ARC). It also requires the Core Graphics framework.

CocoaPods

TYMProgressBarView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'TYMProgressBarView'

Thanks

The code is based on DDProgressView by Damien DeVille and SSPieProgressView by Sam Soffes.

LICENSE

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

About

Progress bar similar to the one on iOS's launching screen

License:MIT License


Languages

Language:Objective-C 95.5%Language:Ruby 4.5%