https://github.com/tinymind/lspieprogressview
An UIView Category which shows progress bar with a fan or rect shape, like a clock or slider.
https://github.com/tinymind/lspieprogressview
Last synced: 6 months ago
JSON representation
An UIView Category which shows progress bar with a fan or rect shape, like a clock or slider.
- Host: GitHub
- URL: https://github.com/tinymind/lspieprogressview
- Owner: tinymind
- Created: 2014-06-13T08:36:06.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-03T15:14:00.000Z (about 11 years ago)
- Last Synced: 2025-02-27T17:21:54.629Z (11 months ago)
- Language: Objective-C
- Homepage:
- Size: 230 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
LSProgressView
=================
A UIView Category, can show progress with fan / rect shape, like a clock / slider.
####Installation
Add `UIView+Progress.h` and `UIView+Progress.m` to your project.
####Usage
``` cpp
#import "UIView+Progress.h"
- (void)onProgressChanged:(CGFloat)progress
{
[self.progressButton1 setPieProgress:progress];
[self.progressButton2 setRectProgress:progress];
}
```
####Example
