[控件] 动态实时设置CAShapeLayer贝塞尔曲线的坐标点

简介:

动态实时设置CAShapeLayer贝塞尔曲线的坐标点

效果图:

源码:

PathDirectionView.h 与 PathDirectionView.m

//
//  PathDirectionView.h
//  Path
//
//  Created by XianMingYou on 15/2/27.
//  Copyright (c) 2015年 XianMingYou. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "UIView+SetRect.h"

@interface PathDirectionView : UIView

/**
 *  起始点在右边
 */
@property (nonatomic) BOOL  startPointAtRight;

/**
 *  根据百分比显示
 *
 *  @param percent 百分比
 */
- (void)showPercent:(CGFloat)percent;

@end


//
//  PathDirectionView.m
//  Path
//
//  Created by XianMingYou on 15/2/27.
//  Copyright (c) 2015年 XianMingYou. All rights reserved.
//

#import "PathDirectionView.h"

@interface PathDirectionView () {
    CAShapeLayer  *_shapeLayer;
}

@end

@implementation PathDirectionView

/**
 *  修改当前view的backupLayer为CAGradientLayer
 *
 *  @return CAGradientLayer类名字
 */
+ (Class)layerClass {
    return [CAShapeLayer class];
}

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        _shapeLayer             = (CAShapeLayer *)self.layer;
        _shapeLayer.fillColor   = [[UIColor clearColor] CGColor];
        _shapeLayer.strokeColor = [[UIColor redColor] CGColor];
        _shapeLayer.lineWidth   = 1.f;
        _shapeLayer.strokeEnd   = 0.f;
        _shapeLayer.opacity     = 0.f;
        _shapeLayer.path        = [self createPathWithHeight:0];
    }
    return self;
}

/**
 *  创建出贝塞尔曲线
 *
 *  @param height 高度
 *
 *  @return 贝塞尔曲线
 */
- (CGPathRef)createPathWithHeight:(CGFloat)height {
    UIBezierPath *bezierPath = UIBezierPath.bezierPath;
    
    CGPoint startPoint = CGPointZero;
    CGPoint endPoint   = CGPointZero;
    if (self.startPointAtRight == NO) {
        startPoint = CGPointMake(self.width, height);
        endPoint   = CGPointZero;
    } else {
        startPoint = CGPointMake(0, height);
        endPoint   = CGPointMake(self.width, 0);
    }
    
    [bezierPath moveToPoint:startPoint];
    [bezierPath addLineToPoint:endPoint];
    
    return bezierPath.CGPath;
}


- (void)showPercent:(CGFloat)percent {
    
    if (percent < 0) {
        _shapeLayer.path      = [self createPathWithHeight:0];
        _shapeLayer.strokeEnd = 0;
        _shapeLayer.opacity   = 0;
    } else if (percent >= 0 && percent <= 0.5f) { // [0, 0.5]
        _shapeLayer.path      = [self createPathWithHeight:0];
        _shapeLayer.strokeEnd = percent * 2.f;
        _shapeLayer.opacity   = percent * 2.f;
    } else if (percent <= 1.f) { // (0.5, 1]
        CGFloat currentPercent = percent - 0.5f;
        _shapeLayer.path      = [self createPathWithHeight:currentPercent * self.height * 2];
        _shapeLayer.strokeEnd = 1.f;
        _shapeLayer.opacity   = 1.f;
    } else { // (1, +无穷大)
        _shapeLayer.path      = [self createPathWithHeight:self.height];
        _shapeLayer.strokeEnd = 1.f;
        _shapeLayer.opacity   = 1.f;
    }
}

@end

ShowDownView.h 与 ShowDownView.m
//
//  ShowDownView.h
//  Path
//
//  Created by XianMingYou on 15/2/27.
//  Copyright (c) 2015年 XianMingYou. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "PathDirectionView.h"

@interface ShowDownView : UIView

- (void)showPercent:(CGFloat)percent;

@end


//
//  ShowDownView.m
//  Path
//
//  Created by XianMingYou on 15/2/27.
//  Copyright (c) 2015年 XianMingYou. All rights reserved.
//

#import "ShowDownView.h"

@interface ShowDownView ()

@property (nonatomic, strong) PathDirectionView *leftView;
@property (nonatomic, strong) PathDirectionView *rightView;

@end

@implementation ShowDownView

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        CGFloat width  = frame.size.width / 2.f;
        CGFloat height = frame.size.height;
        
        CGRect leftRect  = CGRectMake(0, 0, width, height);
        CGRect rightRect = CGRectMake(width, 0, width, height);
        
        self.leftView  = [[PathDirectionView alloc] initWithFrame:leftRect];
        self.rightView = [[PathDirectionView alloc] initWithFrame:rightRect];
        self.rightView.startPointAtRight = YES;
        [self addSubview:self.leftView];
        [self addSubview:self.rightView];
    }
    return self;
}

- (void)showPercent:(CGFloat)percent {
    [self.leftView showPercent:percent];
    [self.rightView showPercent:percent];
}

@end

核心原理:

1. 即时的根据值的变化重新生成path值并赋值给CAShapeLayer

2. 即时的根据值得变化设定strokeEnd值

目录
相关文章
|
1月前
ThreeJs通过射线获取自己的点击位置坐标
这篇文章详细说明了如何使用Three.js来绘制线条,包括创建线几何体、设置材质以及将线条添加到3D场景中的具体步骤。
100 1
ThreeJs通过射线获取自己的点击位置坐标
|
4月前
|
前端开发
Canvas绘画之多边形画板,绘制多边形,携带背景图和绘画功能,带有全部清除的功能,用这个
Canvas绘画之多边形画板,绘制多边形,携带背景图和绘画功能,带有全部清除的功能,用这个
|
4月前
|
Web App开发 前端开发
canvas系列教程04 —— 渐变、阴影、路径、状态、Canvas对象、图形重叠模式
canvas系列教程04 —— 渐变、阴影、路径、状态、Canvas对象、图形重叠模式
389 0
|
定位技术
百度地图开发:批量增加折线、多边形覆盖物的封装函数
百度地图开发:批量增加折线、多边形覆盖物的封装函数
91 0
|
6月前
[MFC] 将像素坐标点缩放,准确的画在所在控件的图片上
[MFC] 将像素坐标点缩放,准确的画在所在控件的图片上
89 0
|
6月前
[Qt5] 矩形、圆和多边形ROI区域的交互(List View列表视图,halcon实现)
[Qt5] 矩形、圆和多边形ROI区域的交互(List View列表视图,halcon实现)
143 0
cesium中绘制立方体、设置材质、操作相机及获取鼠标经纬度和高度的方法
cesium中绘制立方体、设置材质、操作相机及获取鼠标经纬度和高度的方法
239 0
|
存储 前端开发
canvas自定义绘制顺序解决遮挡问题
canvas自定义绘制顺序解决遮挡问题
230 0
|
编译器 API 图形学
【unity细节】基于unity子对象(如相机)为什么无法进行z轴的拖拽移动和z轴自动归位的问题
【unity细节】基于unity子对象(如相机)为什么无法进行z轴的拖拽移动和z轴自动归位的问题
153 0
|
定位技术
egret纹理填充模式(上下填充)
egret纹理填充模式(上下填充)
egret纹理填充模式(上下填充)