iOS 圆形进度条 从角度方面出发

      我们可以对绘制的Path进行分区。这两个属性的值在0~1之间,0代表Path的开始位置,1代表Path的结束位置。是一种线性递增关系。strokeStart默认值为0,strokeEnd默认值为1。这两个属性都支持动画。

比如说:strokeStart=0.1f; strokeEnd=0.7f则显示如下图所示   

把角度转换成PI的 : #define degreesToRadians(x) (M_PI*(x)/180.0)

实现效果如下图所示:

目标效果图

具体实现代码:


部分概图

按照步骤上代码:

/** *  根据跃动数字 * *  确定百分比 *  现在的跳动数字——>背景颜色变化 * */

#import <UIKit/UIKit.h>

@interface DashboardView : UIView

@property (nonatomic, strong) UIImage *bgImage;

@property (nonatomic, copy) void(^TimerBlock)(NSInteger);

/**

*  跃动数字刷新

*

*/

- (void)refreshJumpNOFromNO:(NSString *)startNO toNO:(NSString *)toNO;

@end

先列出一些基本变量和常量

#import "DashboardView.h"

#define degreesToRadians(x) (M_PI*(x)/180.0) //把角度转换成PI的方式

static const CGFloat kMarkerRadius = 5.f; // 光标直径

static const CGFloat kTimerInterval = 0.03; //定时器间隔

static const CGFloat kFastProportion = 0.9; 

static const NSInteger MaxNumber = 1000; //进度条最大值

@interface DashboardView () {

CGFloat animationTime; //动画时间

NSInteger beginNO; //起始值

NSInteger jumpCurrentNO; //当前值

NSInteger endNO; //截止值

}

// 百分比 0 - 100 根据跃动数字设置

@property (nonatomic, assign) CGFloat percent; //百分比

@property (nonatomic, strong) CAShapeLayer *bottomLayer; // 进度条底色

@property (nonatomic, assign) CGFloat lineWidth; // 弧线宽度

@property (nonatomic, strong) UIImageView *markerImageView; // 光标

@property (nonatomic, strong) UIImageView *bgImageView; // 背景图片

@property (nonatomic, assign) CGFloat circelRadius; //圆直径

@property (nonatomic, assign) CGFloat startAngle; // 开始角度

@property (nonatomic, assign) CGFloat endAngle; // 结束角度

@property (nonatomic, strong) UILabel * showLable;//值显示标签

@property (nonatomic, strong) NSTimer * fastTimer;  //定时器

@property (nonatomic, strong) NSTimer * slowTimer; //定时器

@property (nonatomic, assign) NSInteger intervalNum; //间隔数

@end

#pragma mark - Life cycle

- (instancetype)initWithFrame:(CGRect)frame {

self = [super initWithFrame:frame];

if (self) {

self.backgroundColor = [UIColor clearColor];

self.circelRadius = self.frame.size.width - 10.f;

self.lineWidth = 2.f;

self.startAngle = -200.f;

self.endAngle = 20.f;

// 尺寸需根据图片进行调整

self.bgImageView.frame = CGRectMake(6, 6, self.circelRadius, self.circelRadius * 2 / 3);

self.bgImageView.backgroundColor = [UIColor clearColor];

[self addSubview:self.bgImageView];

//添加圆框

[self setupCircleBg];

//光标

[self setupMarkerImageView];

//添加跃动数字

[self setupJumpNOView];

}

return self;

}

- (void)setupCircleBg {

// 圆形路径

UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(self.width / 2, self.height / 2)

radius:(self.circelRadius - self.lineWidth) / 2

startAngle:degreesToRadians(self.startAngle)

endAngle:degreesToRadians(self.endAngle)

clockwise:YES];

// 底色

self.bottomLayer = [CAShapeLayer layer];

self.bottomLayer.frame = self.bounds;

self.bottomLayer.fillColor = [[UIColor clearColor] CGColor];

self.bottomLayer.strokeColor = [[UIColor  colorWithRed:206.f / 256.f green:241.f / 256.f blue:227.f alpha:1.f] CGColor];

self.bottomLayer.opacity = 0.5;

self.bottomLayer.lineCap = kCALineCapRound;

self.bottomLayer.lineWidth = self.lineWidth;

self.bottomLayer.path = [path CGPath];

[self.layer addSublayer:self.bottomLayer];

// 220 是用整个弧度的角度之和 |-200| + 20 = 220

//    [self createAnimationWithStartAngle:degreesToRadians(self.startAngle)

//                              endAngle:degreesToRadians(self.startAngle + 220 * 1)];

}

- (void)setupMarkerImageView {

if (_markerImageView) {

return;

}

_markerImageView = [[UIImageView alloc] init];

_markerImageView.backgroundColor = [UIColor clearColor];

_markerImageView.layer.backgroundColor = [UIColor greenColor].CGColor;

_markerImageView.layer.shadowColor = [UIColor whiteColor].CGColor;

_markerImageView.layer.shadowOffset = CGSizeMake(0, 0);

_markerImageView.layer.shadowRadius = kMarkerRadius*0.5;

_markerImageView.layer.shadowOpacity = 1;

_markerImageView.layer.masksToBounds = NO;

self.markerImageView.layer.cornerRadius = self.markerImageView.frame.size.height / 2;

[self addSubview:self.markerImageView];

_markerImageView.frame = CGRectMake(-100, self.height, kMarkerRadius, kMarkerRadius);

}

- (void)setupJumpNOView {

if (_showLable) {

return;

}

CGFloat width = self.circelRadius / 2 + 20;

CGFloat height = self.circelRadius / 2;

CGFloat xPixel = self.bgImageView.left + (self.bgImageView.width - width)*0.5;//self.circelRadius / 4;

CGFloat yPixel = self.circelRadius / 4;

CGRect labelFrame = CGRectMake(xPixel, yPixel, width, height);

_showLable = [[UILabel alloc] initWithFrame:labelFrame];

_showLable.backgroundColor = [UIColor clearColor];

_showLable.textColor = [UIColor whiteColor];

_showLable.textAlignment = NSTextAlignmentCenter;

_showLable.font = [UIFont systemFontOfSize:70.f];

_showLable.text = [NSString stringWithFormat:@"%ld",jumpCurrentNO];

[self addSubview:_showLable];

}

#pragma mark - Animation

- (void)createAnimationWithStartAngle:(CGFloat)startAngle endAngle:(CGFloat)endAngle { // 光标动画

//启动定时器

[_fastTimer setFireDate:[NSDate distantPast]];

// 设置动画属性

CAKeyframeAnimation *pathAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];

pathAnimation.calculationMode = kCAAnimationPaced;

pathAnimation.fillMode = kCAFillModeForwards;

pathAnimation.removedOnCompletion = NO;

pathAnimation.duration = _percent * kTimerInterval;

pathAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];

pathAnimation.repeatCount = 1;

// 设置动画路径

CGMutablePathRef path = CGPathCreateMutable();

CGPathAddArc(path, NULL, self.width / 2, self.height / 2, (self.circelRadius - kMarkerRadius / 2) / 2, startAngle, endAngle, 0);

pathAnimation.path = path;

CGPathRelease(path);

[self.markerImageView.layer addAnimation:pathAnimation forKey:@"moveMarker"];

}

#pragma mark - Setters / Getters

/**

*  开始动画  确定百分比

*

*/

- (void)refreshJumpNOFromNO:(NSString *)startNO toNO:(NSString *)toNO {

beginNO = 0;//[startNO integerValue];

jumpCurrentNO = 0;//[startNO integerValue];

endNO = [toNO integerValue];

_percent = endNO * 100 / MaxNumber;

NSInteger diffNum = endNO - beginNO;

if (diffNum <= 0) {

return;

}

if (diffNum < 100) {

_intervalNum = 5;

} else if (diffNum < 300) {

_intervalNum = 15;

} else if (diffNum <= MaxNumber) {

_intervalNum = 10;

}

NSLog(@"数字间隔:%ld",_intervalNum);

//数字

[self setupJumpThings];

//光标

[self createAnimationWithStartAngle:degreesToRadians(self.startAngle)

endAngle:degreesToRadians(self.startAngle + 220 * _percent / 100)];

}

- (void)setBgImage:(UIImage *)bgImage {

_bgImage = bgImage;

self.bgImageView.image = bgImage;

}

- (UIImageView *)bgImageView {

if (nil == _bgImageView) {

_bgImageView = [[UIImageView alloc] init];

}

return _bgImageView;

}

#pragma mark - 跃动数字

- (void)setupJumpThings {

animationTime = _percent * kTimerInterval;

self.fastTimer = [NSTimer timerWithTimeInterval:kTimerInterval*kFastProportion

target:self

selector:@selector(fastTimerAction)

userInfo:nil

repeats:YES];

[[NSRunLoop currentRunLoop] addTimer:_fastTimer forMode:NSRunLoopCommonModes];

//时间间隔 = (总时间 - 快时间间隔*变化次数)/ 再次需要变化的次数

//快时间

NSInteger fastEndNO = endNO * kFastProportion;

NSInteger fastJump = fastEndNO/_intervalNum;

if (fastJump % _intervalNum) {

fastJump++;

fastEndNO += _intervalNum;

}

CGFloat fastTTime = fastJump*kTimerInterval*kFastProportion;

//剩余应跳动次数

NSInteger changNO = endNO - fastEndNO;

NSInteger endJump = changNO / _intervalNum + changNO % _intervalNum;

//慢时间间隔

NSTimeInterval slowInterval = (animationTime - fastTTime) / endJump;

self.slowTimer = [NSTimer timerWithTimeInterval:slowInterval

target:self

selector:@selector(slowTimerAction)

userInfo:nil

repeats:YES];

[[NSRunLoop currentRunLoop] addTimer:_slowTimer forMode:NSRunLoopCommonModes];

[_fastTimer setFireDate:[NSDate distantFuture]];

[_slowTimer setFireDate:[NSDate distantFuture]];

}

#pragma mark 加速定时器触发事件

- (void)fastTimerAction {

if (jumpCurrentNO >= endNO) {

[self.fastTimer invalidate];

return;

}

if (jumpCurrentNO >= endNO * kFastProportion) {

[self.fastTimer invalidate];

[self.slowTimer setFireDate:[NSDate distantPast]];

return;

}

[self commonTimerAction];

}

#pragma mark 减速定时器触发事件

- (void)slowTimerAction {

if (jumpCurrentNO >= endNO) {

[self.slowTimer invalidate];

return;

}

[self commonTimerAction];

}

#pragma mark 计时器共性事件 - lable赋值 背景颜色变化

- (void)commonTimerAction {

if (jumpCurrentNO % 100 == 0 && jumpCurrentNO != 0) {

NSInteger colorIndex = jumpCurrentNO / 100;

dispatch_async(dispatch_get_main_queue(), ^{

if (self.TimerBlock) {

self.TimerBlock(colorIndex);

}

});

}

NSInteger changeValueBy = endNO - jumpCurrentNO;

if (changeValueBy/10 < 1) {

jumpCurrentNO++;

} else {

//        NSInteger changeBy = changeValueBy / 10;

jumpCurrentNO += _intervalNum;

}

_showLable.text = [NSString stringWithFormat:@"%ld",jumpCurrentNO];

}

@end

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

推荐阅读更多精彩内容