XLCircleProgress
May 26, 2017 · View on GitHub
利用贝塞尔曲线实现的圆环进度指示器
显示效果如下
使用方法
创建方法:
_circle = [[XLCircleProgress alloc] initWithFrame:CGRectMake(0, 0, circleWidth, circleWidth)];
_circle.center = self.view.center;
[self.view addSubview:_circle];
刷新进度
_circle.progress = value;