PICircularProgressView is a subclass of UIView with circular UIProgressView properties and text in this circle representing the progress.
It is based on TSPCircularProgressIndicator for OS X from thesynapseproject.
- Copy the
PICircularProgressView
directory to your project. - Import the header:
#import PICircularProgressView
self.progressView = [[PICircularProgressView alloc] init];
[self.view addSubview:self.progressView];
- You can also use Interface Builder by adding
UIView
and change the class toPICircularProgressView
The original version for OS X (TSPCircularProgressIndicator) was created by thesynapseproject.