时间:2021-05-20
本篇写的是实现环形进度条,并带动画效果,要实现这些,仅能通过自己画一个
方法直接看代码
为了方便多次调用,用继承UIView的方式
.m文件
#import <UIKit/UIKit.h>@interface LoopProgressView : UIView@property (nonatomic, assign) CGFloat progress;@end.h文件
NSTimer的调用并非精确,可以自行百度
这里因为每0.01s启动一次定时器,所以要同步进度条和数字,就将self.progress赋值给动画的duration属性就可以了,duration为动画时间。
在使用时我发现如果在tableviewcell中添加了这个环形进度条时有个缺点,就是定时器原本用的是系统的runloop,导致数据显示滞后,所以现更新为子线程里添加定时器,子线程的定时器必须添加[[NSRunLoop currentRunLoop] run];才可启动定时器,因为子线程的runloop里是不带nstimer的,要手动添加运行。
#import "LoopProgressView.h"#import <QuartzCore/QuartzCore.h>#define ViewWidth self.frame.size.width //环形进度条的视图宽度#define ProgressWidth 2.5 //环形进度条的圆环宽度#define Radius ViewWidth/2-ProgressWidth //环形进度条的半径@interface LoopProgressView(){ CAShapeLayer *arcLayer; UILabel *label; 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{ _i=0; CGContextRef progressContext = UIGraphicsGetCurrentContext(); CGContextSetLineWidth(progressContext, ProgressWidth); CGContextSetRGBStrokeColor(progressContext, 209.0/255.0, 209.0/255.0, 209.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 = self.progress * M_PI * 2; // - M_PI * 0.5为改变初始位置 // 进度数字字号,可自己根据自己需要,从视图大小去适配字体字号 int fontNum = ViewWidth/6; 49 label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0,Radius+10, ViewWidth/6)]; label.center = CGPointMake(xCenter, yCenter); label.textAlignment = NSTextAlignmentCenter; label.font = [UIFont boldSystemFontOfSize:fontNum]; label.text = @"0%"; [self addSubview:label]; UIBezierPath *path=[UIBezierPath bezierPath]; [path addArcWithCenter:CGPointMake(xCenter,yCenter) radius:Radius startAngle:0 endAngle:to clockwise:YES]; arcLayer=[CAShapeLayer layer]; arcLayer.path=path.CGPath;//46,169,230 arcLayer.fillColor = [UIColor clearColor].CGColor; arcLayer.strokeColor=[UIColor colorWithRed:227.0/255.0 green:91.0/255.0 blue:90.0/255.0 alpha:0.7].CGColor; arcLayer.lineWidth=ProgressWidth; arcLayer.backgroundColor = [UIColor blueColor].CGColor; [self.layer addSublayer:arcLayer]; dispatch_async(dispatch_get_global_queue(0, 0), ^{ [self drawLineAnimation:arcLayer]; }); if (self.progress > 1) { NSLog(@"传入数值范围为 0-1"); self.progress = 1; }else if (self.progress < 0){ NSLog(@"传入数值范围为 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; label.text = [NSString stringWithFormat:@"%.0f%%",_i*100]; 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完成后在要调用的控制器里,仅需几段代码:传进的参数:为0-1
LoopProgressView *custom = [[LoopProgressView alloc]initWithFrame:CGRectMake(50, 100, 100, 100)]; custom.progress = 0.44; [self.view addSubview:custom];实现:
已经实现进度条和数字的同步:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了微信小程序实现环形进度条的具体代码,供大家参考,具体内容如下微信小程序自定义组件官方教程环形进度条的组件已经放在github上环形进度条效果
Android开发中,有很多的功能在实际应用中都起了很大的作用,比如android进度条的实现方式,下面给大家介绍Android环形进度条(安卓默认形式),具体
Android实现环形进度条的效果图如下:自定义控件:AttendanceProgressBar代码如下:publicclassAttendanceProgre
本文介绍了canvas实现圆形进度条动画,分享给大家,具体如下:先给大家看看效果图,然后在上代码。进度条动画1.canvas的HTML部分很简单就一个canva
主题今天手把手教大家用CSS3制作圆形滚动进度条动画,想不会都难!那么,到底是什么东东呢?先不急,之前我分享了一个css实现进度条效果的博客《CSS实现进度条和