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

https://github.com/mengxianliang/xlcircleprogress

iOS 圆环进度指示器
https://github.com/mengxianliang/xlcircleprogress

bezierpath circle progress

Last synced: about 1 year ago
JSON representation

iOS 圆环进度指示器

Awesome Lists containing this project

README

          

# XLCircleProgress

利用贝塞尔曲线实现的圆环进度指示器

### 显示效果如下

### 使用方法

**创建方法:**

```objc
_circle = [[XLCircleProgress alloc] initWithFrame:CGRectMake(0, 0, circleWidth, circleWidth)];
_circle.center = self.view.center;
[self.view addSubview:_circle];
```

**刷新进度**

```objc
_circle.progress = value;
```

### 实现原理请参考[我的博文](http://blog.csdn.net/u013282507/article/details/54098206)

### 个人开发过的UI工具集合 [XLUIKit](https://github.com/mengxianliang/XLUIKit)