iOS 圆环进度指示器 XLCircleProgress

一、实现效果

iOS 圆环进度指示器 XLCircleProgress_第1张图片

二、使用方法

    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];

三、实现原理

请参考我的另一篇博文:

iOS UIBezierPath 通过贝塞尔曲线画圆环 创建一个环形进度指示器

Demo下载

你可能感兴趣的:(iOS,动画,iOS,动画效果开发经验总结)