BKECircularProgressView 0.2

BKECircularProgressView 0.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Unclaimed.




Easily create circular progress views. Include within the project is an example usage. I'm currently using this within my iPhone app, kickit.

Screenshot

Example Usage

_progressView = [[BKECircularProgressView alloc] initWithFrame:CGRectMake(100, 200, 120, 120)];
[_progressView setProgressTintColor:[UIColor colorWithRed:224.0/255.0 green:80.0/255.0 blue:15.0/255.0 alpha:1]];
[_progressView setBackgroundTintColor:[UIColor colorWithRed:223.0/255.0 green:223.0/255.0 blue:223.0/255.0 alpha:1]];
[_progressView setLineWidth:3.0f];
[_progressView setProgress:0.2f];
[self.view addSubview:_progressView];

Adding To Your Project

Manually

Simply add the files BKECircularProgressView.h and BKECircularProgressView.m to your project.