iOS环形进度条

.h文件

#import <UIKit/UIKit.h>
@interface YTProgressView : UIView
@property (nonatomic, copy) NSString *progressString;
@property (nonatomic, strong) UILabel *label;
@property (nonatomic, assign) CGFloat progress;
@property (nonatomic, copy) UIColor *progressColor;
- (void)updateViewsWithProgresSting:(NSString *)progressString progressColor:(UIColor *)progressColor progress:(CGFloat)progress;
@end


.m文件


#import "YTProgressView.h"

#import <QuartzCore/QuartzCore.h>

#define ViewWidth self.frame.size.width //环形进度条的视图宽度

#define ProgressWidth 3 //环形进度条的圆环宽度

#define Radius ViewWidth/2-ProgressWidth //环形进度条的半径

#define RGBA(r, g, b, a) [UIColor colorWithRed:(r/255.0) green:(g/255.0) blue:(b/255.0) alpha:(a)]

#define RGB(r, g, b) RGBA(r, g, b, 1.0)

@interface YTProgressView(){

CAShapeLayer *arcLayer;

NSTimer *progressTimer;

}

@property (nonatomic,assign)CGFloat i;

@end

@implementation LoopProgressView

-(id)initWithFrame:(CGRect)frame

{

self = [super initWithFrame:frame];

if (self) {

self.backgroundColor = [UIColor clearColor];

}

return self;

}

-(void)drawRect:(CGRect)rect

{

YTLog(@"----progress %.f--%@",self.progress,self.progressString);

_i=0;

CGContextRef progressContext = UIGraphicsGetCurrentContext();

CGContextSetLineWidth(progressContext, ProgressWidth);

CGContextSetRGBStrokeColor(progressContext, 198.0/255.0, 198.0/255.0, 198.0/255.0, 1);

CGFloat xCenter = rect.size.width * 0.5;

CGFloat yCenter = rect.size.height * 0.5;

//绘制环形进度条底框

CGContextAddArc(progressContext, xCenter, yCenter, Radius, 0, 2*M_PI, 0);

CGContextDrawPath(progressContext, kCGPathStroke);

//    //绘制环形进度环

//    CGFloat to = - M_PI * 0.5 + self.progress * M_PI *2; // - M_PI * 0.5为改变初始位置

// 进度数字字号,可自己根据自己需要,从视图大小去适配字体字号

//    int fontNum = ViewWidth/6;

int weight = ViewWidth - ProgressWidth*2;

if (!_label) {

_label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, weight, ViewWidth/6)];

_label.center = CGPointMake(xCenter, yCenter);

_label.textAlignment = NSTextAlignmentCenter;

_label.font = [UIFont boldSystemFontOfSize:14];

_label.textColor = self.progressColor;

_label.adjustsFontSizeToFitWidth = YES;

[self addSubview:_label];

}

_label.text = self.progressString ;

YTLog(@"progress %.2f--%@",self.progress,self.progressString);

UIBezierPath *path=[UIBezierPath bezierPath];

[path addArcWithCenter:CGPointMake(xCenter,yCenter) radius:Radius startAngle:- M_PI_2 endAngle:(-M_PI_2 +2*self.progress*M_PI) clockwise:YES];

if (!arcLayer) {

arcLayer=[CAShapeLayer layer];

arcLayer.path=path.CGPath;//46,169,230

arcLayer.fillColor = [UIColor clearColor].CGColor;

arcLayer.strokeColor=self.progressColor.CGColor;

arcLayer.lineWidth=ProgressWidth;

arcLayer.lineCap = @"round";

arcLayer.backgroundColor = [UIColor blueColor].CGColor;

[self.layer addSublayer:arcLayer];

}

[self progressAnimationStart];

}

- (void)updateViewsWithProgresSting:(NSString *)progressString progressColor:(UIColor *)progressColor progress:(CGFloat)progress{

self.backgroundColor = [UIColor clearColor];

self.progressColor = progressColor;

self.progressString = progressString;

self.progress = progress;

self.label.text = progressString;

self.label.textColor = progressColor;

UIBezierPath *path=[UIBezierPath bezierPath];

CGFloat xCenter = self.frame.size.width * 0.5;

CGFloat yCenter = self.frame.size.height * 0.5;

[path addArcWithCenter:CGPointMake(xCenter,yCenter) radius:Radius startAngle:- M_PI_2 endAngle:(-M_PI_2 +2*progress*M_PI) clockwise:YES];

arcLayer.path=path.CGPath;

arcLayer.strokeColor=progressColor.CGColor;

[self progressAnimationStart];

}

- (void)progressAnimationStart

{

dispatch_async(dispatch_get_global_queue(0, 0), ^{

[self drawLineAnimation:arcLayer];

});

if (self.progress >= 1) {

YTLog(@"传入数值范围为 0-1");

self.progress = 1;

}else if (self.progress <= 0){

YTLog(@"传入数值范围为 0-1");

self.progress = 0;

return;

}

if (self.progress >= 0) {

NSThread *thread = [[NSThread alloc]initWithTarget:self selector:@selector(newThread) object:nil];

[thread start];

}

}

-(void)newThread

{

@autoreleasepool {

progressTimer = [NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(timeLabel) userInfo:nil repeats:YES];

[[NSRunLoop currentRunLoop] run];

}

}

//NSTimer不会精准调用  虚拟机和真机效果不一样

-(void)timeLabel

{

_i += 0.01;

if (_i >= self.progress) {

[progressTimer invalidate];

progressTimer = nil;

}

}

//定义动画过程

-(void)drawLineAnimation:(CALayer*)layer

{

CABasicAnimation *bas=[CABasicAnimation animationWithKeyPath:@"strokeEnd"];

bas.duration=self.progress;//动画时间

bas.delegate=self;

bas.fromValue=[NSNumber numberWithInteger:0];

bas.toValue=[NSNumber numberWithInteger:1];

[layer addAnimation:bas forKey:@"key"];

}

@end

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容