XLCircleProgress icon indicating copy to clipboard operation
XLCircleProgress copied to clipboard

iOS 圆环进度指示器

Results 3 XLCircleProgress issues
Sort by recently updated
recently updated
newest added

原本代码: _endPoint.frame = CGRectMake(0, 0, _lineWidth - endPointMargin*2,_lineWidth - endPointMargin*2); rect.origin.x = x + endPointMargin; rect.origin.y = y + endPointMargin; 修改如下: _endPoint.frame = CGRectMake(self.bounds.size.width/2 - endPointMargin/2, - endPointMargin/2, endPointMargin,endPointMargin); x...

可以给添加动画一起更像圆形进度 [self.progressLayer addAnimation:pathAnimation forKey:@“progressLayerAnimation”]; [self.endPoint.layer addAnimation:endPointAnimation forKey:@“endPointAnimation”];

可以把颜色方法 @属性(非原子,强)的UIColor * BGCOLOR; @属性(非原子,强)NSArray * circleColorArray; @property(assign,nonatomic)CGFloat lineWidth; ........