/XLCircleProgress

iOS 圆环进度指示器

Primary LanguageObjective-C

XLCircleProgress

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

显示效果如下

使用方法

创建方法:

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

刷新进度

_circle.progress = value;

实现原理请参考我的博文

个人开发过的UI工具集合 XLUIKit