TYMProgressBarView 0.3.2

TYMProgressBarView 0.3.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Apr 2015

Maintained by Yiming Tang.



  • By
  • Yiming Tang

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.

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.