CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Dec 2014 |
Maintained by Tiago Henriques.
UIView subclass that mimics Twitter for iOS progress bar.
Drag the contents of THProgressView/ into your project.
THCircularProgressView is simply a UIView subclass so just instantiate it and add it a view hieararchy.
CGRect rect = ...
THProgressView *progressView = [[THProgressView alloc] initWithFrame:rect];
progressView.borderTintColor = [UIColor whiteColor];
progressView.progressTintColor = [UIColor whiteColor];
[progressView setProgress:0.5f animated:YES]; // floating-point value between 0.0 and 1.0The sample project in /Demo contains a couple examples.