由于新项目的的需求,需要画环形图,由于以前都没接触过这一类(我是菜鸟),去cocochina山找到了一个案例,个人觉得还可以,分享一下
github 地址https://github.com/zhouxing5311/ZZCircleProgress
这个使用起来非常的简单
作者开放了很多接口,可以根据自己的需求进行更改
一般就是声明一个累类就Ok了
具体实现的代码如下
可能我的代码有点不一样,我自己加入了一些元素进去
//无小圆点、同动画时间 self.zzCircleProgress = [[ZZCircleProgress alloc] initWithFrame:CGRectMake((JdryScreeWidth*0.75)+9, 16, 50, 50) pathBackColor:BACK_COLOR pathFillColor:BLUE_COLOR startAngle:270 strokeWidth:4]; self.zzCircleProgress.showPoint = NO; self.zzCircleProgress.notAnimated = YES; self.zzCircleProgress.progress = 0.9; self.zzCircleProgress.fontSize = 16.0; // self.zzCircleProgress.animationModel = CircleIncreaseByProgress; self.zzCircleProgress.textColor = BLUE_COLOR; self.zzCircleProgress.labelStr = [NSString stringWithFormat:@"%d%%", (int)(self.zzCircleProgress.progress *100)]; [self addSubview:self.zzCircleProgress];