An open API service indexing awesome lists of open source software.

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.

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

![Example](https://github.com/tinymind/LSPieProgressView/raw/master/example.png)