https://github.com/mengxianliang/xlcircleprogress
iOS 圆环进度指示器
https://github.com/mengxianliang/xlcircleprogress
bezierpath circle progress
Last synced: about 1 year ago
JSON representation
iOS 圆环进度指示器
- Host: GitHub
- URL: https://github.com/mengxianliang/xlcircleprogress
- Owner: mengxianliang
- Created: 2017-01-05T11:50:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-11-30T09:18:21.000Z (over 4 years ago)
- Last Synced: 2025-04-12T06:54:04.918Z (about 1 year ago)
- Topics: bezierpath, circle, progress
- Language: Objective-C
- Homepage:
- Size: 182 KB
- Stars: 113
- Watchers: 4
- Forks: 27
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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)