iOS 圆环进度指示器 XLCircleProgress
- 授权协议: GPL
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/mengxianliang/XLCircleProgress
- 软件文档: https://github.com/mengxianliang/XLCircleProgress
软件介绍
XLCircleProgress,是一个利用贝塞尔曲线实现的圆环进度指示器。
显示效果如下:
使用方法
CGFloat circleWidth = self.view.bounds.size.width; _circle = [[XLCircleProgress alloc] initWithFrame:CGRectMake(0, 0, circleWidth, circleWidth)]; _circle.center = self.view.center; [self.view addSubview:_circle];
