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.
_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];
Simply add the files BKECircularProgressView.h
and BKECircularProgressView.m
to your project.