TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Custom circular UIView
that allow set progress similar to AppStore control.
Please refer to the header file [MRCircularProgressView.h
] for a complete overview of the capabilities of the class.
Copy files MRCircularProgressView.h
and MRCircularProgressView.m
from folder /MRCircularProgressView/MRCircularProgressView/
into your project.
Create MRCircularProgressView
as any other UIView
item.
- (void)viewDidLoad
{
[super viewDidLoad];
MRCircularProgressView *circularProgressView = [[MRCircularProgressView alloc] initWithFrame:self.view.frame];
[circularProgressView setBackgroundColor:[UIColor whiteColor]];
[circularProgressView setProgress:1.0f animated:YES];
[self.view addSubview:circularProgressView];
}
MRCircularProgressView is available under the MIT license. See the LICENSE file for more info.