iOS圆形倒计时控件的实现

这两个月真的太忙了,被一堆需求压着,本来想好好学学Clang相关的知识的,但一直没时间,博客也没更了,现在终于把手上的需求都提测掉了,这几天先好好复盘一下,看看这段时间有什么收获,今天来记录一下圆形倒计时控件的实现。

先来看看demo的效果:

demo效果

实现原理:构建一个环形,环形的起始点为-π/2,终点需要讨论顺时针/逆时针、递增/递减四种情况。

设进度为progress,起始点为startA,一圈刚好为2π,现在我们需要根据clockWise和increase的四种组合情况来得出终点endA的公式,再结合UIBezierPath的接口决定是否顺时针构建环形,从而画出一个弧,结合progress即可有进度条的效果了。

下图是贝塞尔曲线的坐标系,所以起点是-π/2


  • 顺时针递增

起始值为0,顺时针构建环形,endA与progress正相关,得:

endA = startA + progress * 2π


  • 逆时针递减

起始值为2π,顺时针构建环形,endA与(1 - progress)正相关,得:

endA = startA + (1 - progress) * 2π


  • 顺时针递减

起始值为2π,逆时针构建环形,endA与(1 - progress)负相关,得:

endA = startA - (1 - progress) * 2π


  • 逆时针递增

起始值为0,逆时针构建环形,endA与progress负相关,得:

endA = startA - progress * 2π


通过以上分析,可以看到

  1. 顺时针递增、逆时针递减都是用顺时针构建环形,否则用逆时针构建环形

  2. 顺时针递增、逆时针递增,endA都是与progress相关,否则与(1-progress)相关

  3. 逆时针构建环形需要与相关参数负相关

得代码:

- (void)showAnimationWithProgress:(CGFloat)progress {
    CGFloat startA = - M_PI_2;  // 设置进度条起点位置
    CGFloat endA;               // 设置进度条终点位置
    CGFloat clockWiseFlag = _clockWise ? 1 : -1;
    CGFloat progressFlag = _increase ? 1 : -1;
    CGFloat percent = _increase ? progress : (1 - progress);
    
    // 顺增、逆减,顺时针构建环形
    BOOL shouldClockWiseBulid = (clockWiseFlag * progressFlag > 0);
    
    endA = startA + M_PI * 2 * percent * clockWiseFlag * progressFlag;
    
    UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(_radius / 2, _radius / 2) radius:_radius / 2 - self.lineWidth / 2 startAngle:startA endAngle:endA clockwise:shouldClockWiseBulid]; // 构建环形
    self.path = [path CGPath];
}

再加上一些可以自定义的参数(半径、填充颜色等),也可以自己根据倒计时和总计时来实现,就可以构建自己想要的倒计时环形啦!附相关代码:

//
//  HobenCountDownCircleLayer.h
//  HobenLayerDemo
//
//  Created by Hoben on 2020/8/5.
//  Copyright © 2020 Hoben. All rights reserved.
//  用于展示圆形倒计时(顺时针/逆时针/递增/递减)的Layer

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface HobenCountDownCircleLayer : CAShapeLayer

/**
 建立一个展示圆形倒计时的Layer
 @param strokeColor 倒计时线的颜色
 @param lineWidth   倒计时线的宽度
 @param radius      倒计时圆的半径
 */
+ (HobenCountDownCircleLayer *)layerWithStrokeColor:(UIColor *)strokeColor lineWidth:(CGFloat)lineWidth radius:(CGFloat)radius;

@property (nonatomic, assign) BOOL clockWise;   // 是否为顺时针

@property (nonatomic, assign) BOOL increase;    // 是否递增动画

@property (nonatomic, assign) CGFloat totalCountDown;   // 总计时

@property (nonatomic, assign) CGFloat radius;  // 圆的半径

/**
 根据当前倒计时展示Layer(需要实现设置totalCountDown)
 @param countDown 当前的倒计时
*/
- (void)showAnimationWithCountdown:(CGFloat)countDown;

/**
 根据当前进度展示Layer
 @param progress 当前的进度(0%-100%)
*/
- (void)showAnimationWithProgress:(CGFloat)progress;

@end

NS_ASSUME_NONNULL_END
//
//  HobenCountDownCircleLayer.m
//  HobenLayerDemo
//
//  Created by Hoben on 2020/8/5.
//  Copyright © 2020 Hoben. All rights reserved.
//

#import "HobenCountDownCircleLayer.h"

@implementation HobenCountDownCircleLayer

+ (HobenCountDownCircleLayer *)layerWithStrokeColor:(UIColor *)strokeColor lineWidth:(CGFloat)lineWidth radius:(CGFloat)radius {
    HobenCountDownCircleLayer *shapeLayer = [HobenCountDownCircleLayer layer];
    shapeLayer.strokeColor = strokeColor.CGColor;
    shapeLayer.lineWidth = lineWidth;
    shapeLayer.fillColor = [UIColor clearColor].CGColor; // 填充色为无色
    shapeLayer.lineCap = kCALineCapRound; // 指定线的边缘是圆的
    shapeLayer.totalCountDown = 1;
    shapeLayer.radius = radius;
    return shapeLayer;
}

- (void)showAnimationWithCountdown:(CGFloat)countDown {
    if (_totalCountDown <= 0) {
        NSAssert(NO, @"总计时不能为0");
        return;
    }
    [self showAnimationWithProgress:(_totalCountDown - countDown) * 1.0 / _totalCountDown];
}

- (void)showAnimationWithProgress:(CGFloat)progress {
    CGFloat startA = - M_PI_2;  // 设置进度条起点位置
    CGFloat endA;               // 设置进度条终点位置
    CGFloat clockWiseFlag = _clockWise ? 1 : -1;
    CGFloat progressFlag = _increase ? 1 : -1;
    CGFloat percent = _increase ? progress : (1 - progress);
    
    // 顺增、逆减,顺时针构建环形
    BOOL shouldClockWiseBulid = (clockWiseFlag * progressFlag > 0);
    
    endA = startA + M_PI * 2 * percent * clockWiseFlag * progressFlag;
    
    UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(_radius / 2, _radius / 2) radius:_radius / 2 - self.lineWidth / 2 startAngle:startA endAngle:endA clockwise:shouldClockWiseBulid]; // 构建环形
    self.path = [path CGPath];
}

@end

Demo调用:

//
//  ViewController.m
//  HobenLayerDemo
//
//  Created by Hoben on 2020/8/19.
//  Copyright © 2020 Hoben. All rights reserved.
//

#import "ViewController.h"
#import "HobenCountDownCircleLayer.h"

#define kHobenRadius 100.f

#define kHobenTotalCountDown 20.f

@interface ViewController ()

@property (nonatomic, strong) HobenCountDownCircleLayer *circleCountDownLayer;

@property (nonatomic, strong) UIButton *circleButton;

@property (nonatomic, strong) NSTimer *timer;

@property (nonatomic, assign) NSInteger countdown;

@property (nonatomic, strong) UISwitch *clockWiseSwitch;

@property (nonatomic, strong) UISwitch *increaseSwitch;

@property (nonatomic, strong) UILabel *clockWiseLabel;

@property (nonatomic, strong) UILabel *increaseLabel;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    [self.view addSubview:self.circleButton];
    [self.circleButton.layer addSublayer:self.circleCountDownLayer];
    
    [self.view addSubview:self.clockWiseLabel];
    [self.view addSubview:self.increaseLabel];
    
    [self.view addSubview:self.clockWiseSwitch];
    [self.view addSubview:self.increaseSwitch];
}

- (void)viewDidLayoutSubviews {
    [super viewDidLayoutSubviews];
    
    self.circleButton.center = self.view.center;
    self.circleCountDownLayer.frame = CGRectMake(0, 0, kHobenRadius, kHobenRadius);
    
    
    self.clockWiseLabel.frame = CGRectMake(100.f, 430.f, 20.f, 20.f);
    [self.clockWiseLabel sizeToFit];
    self.clockWiseSwitch.frame = CGRectMake(180.f, 420.f, 20.f, 20.f);
    
    self.increaseLabel.frame = CGRectMake(100.f, 480.f, 20.f, 20.f);
    [self.increaseLabel sizeToFit];
    self.increaseSwitch.frame = CGRectMake(180.f, 470.f, 20.f, 20.f);
}

- (void)stopTimer {
    if (self.timer) {
        [self.timer invalidate];
        self.timer = nil;
    }
}

#pragma mark - Action

- (void)onClockWiseChanged:(UISwitch *)switcher {
    BOOL closeWise = switcher.on;
    self.circleCountDownLayer.clockWise = closeWise;
}

- (void)onIncreaseChanged:(UISwitch *)switcher {
    BOOL increase = switcher.on;
    self.circleCountDownLayer.increase = increase;
}

- (void)startTimer {
    [self stopTimer];
    _countdown = kHobenTotalCountDown;
    __weak typeof(self) weakSelf = self;
    self.timer = [NSTimer timerWithTimeInterval:.1f repeats:YES block:^(NSTimer * _Nonnull timer) {
        weakSelf.countdown--;
    }];
    
    [[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
}

#pragma mark - Setter & Getter

- (void)setCountdown:(NSInteger)countdown {
    _countdown = countdown;
    if (countdown > 0) {
        self.circleCountDownLayer.hidden = NO;
        [self.circleCountDownLayer showAnimationWithCountdown:countdown];
    } else {
        [self stopTimer];
        self.circleCountDownLayer.hidden = YES;
    }
}

- (UIButton *)circleButton {
    if (!_circleButton) {
        _circleButton = [UIButton buttonWithType:UIButtonTypeCustom];
        _circleButton.frame = CGRectMake(0, 0, kHobenRadius, kHobenRadius);
        _circleButton.layer.cornerRadius = kHobenRadius / 2;
        _circleButton.layer.masksToBounds = YES;
        [_circleButton setTitle:@"Start" forState:UIControlStateNormal];
        _circleButton.titleLabel.font = [UIFont systemFontOfSize:16.f];
        [_circleButton setTitleColor:[UIColor greenColor] forState:UIControlStateNormal];
        [_circleButton addTarget:self action:@selector(startTimer) forControlEvents:UIControlEventTouchUpInside];
        _circleButton.backgroundColor = [UIColor blackColor];
    }
    return _circleButton;
}

- (HobenCountDownCircleLayer *)circleCountDownLayer {
    if (!_circleCountDownLayer) {
        _circleCountDownLayer = ({
            HobenCountDownCircleLayer *progressLayer = [HobenCountDownCircleLayer layerWithStrokeColor:[UIColor greenColor] lineWidth:5.f radius:kHobenRadius];
            progressLayer.clockWise = YES;
            progressLayer.increase = YES;
            progressLayer.totalCountDown = kHobenTotalCountDown;
            progressLayer;
        });
    }
    return _circleCountDownLayer;
}

- (UISwitch *)clockWiseSwitch {
    if (!_clockWiseSwitch) {
        _clockWiseSwitch = ({
            UISwitch *switcher = [[UISwitch alloc] init];
            [switcher setOn:YES];
            [switcher addTarget:self action:@selector(onClockWiseChanged:) forControlEvents:UIControlEventValueChanged];
            switcher;
        });
    }
    return _clockWiseSwitch;
}

- (UISwitch *)increaseSwitch {
    if (!_increaseSwitch) {
        _increaseSwitch = ({
            UISwitch *switcher = [[UISwitch alloc] init];
            [switcher setOn:YES];
            [switcher addTarget:self action:@selector(onIncreaseChanged:) forControlEvents:UIControlEventValueChanged];
            switcher;
        });
    }
    return _increaseSwitch;
}

- (UILabel *)clockWiseLabel {
    if (!_clockWiseLabel) {
        _clockWiseLabel = ({
            UILabel *label = [[UILabel alloc] init];
            label.font = [UIFont systemFontOfSize:14.f];
            label.text = @"是否顺时针";
            label;
        });
    }
    return _clockWiseLabel;
}

- (UILabel *)increaseLabel {
    if (!_increaseLabel) {
        _increaseLabel = ({
            UILabel *label = [[UILabel alloc] init];
            label.font = [UIFont systemFontOfSize:14.f];
            label.text = @"是否递增";
            label;
        });
    }
    return _increaseLabel;
}

@end

总的来说,构建这个环形看上去不是很难,但是实际写的时候还是有点绕的,四种情形各不相同,需要先分开分析再结合规律总结,才能造出一个比较通用的轮子~

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