UIBezierPath详解

  • 此文源于网络
    使用UIBezierPath类可以创建基于矢量的路径,这个类在UIKit中。此类是Core Graphics框架关于path的一个封装。使用此类可以定义简单的形状,如椭圆或者矩形,或者有多个直线和曲线段组成的形状。

Bezier Path 基础

UIBezierPath对象是CGPathRef数据类型的封装。path如果是基于矢量形状的,都用直线和曲线段去创建。我们使用直线段去创建矩形和多边形,使用曲线段去创建弧(arc),圆或者其他复杂的曲线形状。每一段都包括一个或者多个点,绘图命令定义如何去诠释这些点。每一个直线段或者曲线段的结束的地方是下一个的开始的地方。每一个连接的直线或者曲线段的集合成为subpath。一个UIBezierPath对象定义一个完整的路径包括一个或者多个subpaths。

UIBezierPath类头文件定义

// 根据一个Rect画一个矩形曲线

  • (instancetype)bezierPath;

/**

  • 根据一个Rect画一个椭圆曲线 Rect为正方形时画的是一个圆

  • @param rect CGRect一个矩形

*/

  • (instancetype)bezierPathWithRect:(CGRect)rect;

/**

  • 根据一个Rect画一个圆角矩形曲线 (Radius:圆角半径) 当Rect为正方形时且Radius等于边长一半时画的是一个圆

  • @param rect CGRect一个矩形

*/

  • (instancetype)bezierPathWithOvalInRect:(CGRect)rect;

/**

  • 根据一个Rect画一个圆角矩形曲线 当Rect为正方形时且Radius等于边长一半时画的是一个圆

  • @param rect CGRect一个矩形

  • @param cornerRadius 圆角半径

*/

  • (instancetype)bezierPathWithRoundedRect:(CGRect)rect cornerRadius:(CGFloat)cornerRadius;

typedef NS_OPTIONS(NSUInteger, UIRectCorner) {

UIRectCornerTopLeft     = 1 << 0,

UIRectCornerTopRight    = 1 << 1,

UIRectCornerBottomLeft  = 1 << 2,

UIRectCornerBottomRight = 1 << 3,

UIRectCornerAllCorners  = ~0UL

};

/**

  • 根据一个Rect针对四角中的某个或多个角设置圆角

  • @param rect CGRect一个矩形

  • @param corners 允许指定矩形的部分角为圆角,而其余的角为直角,取值来自枚举

  • @param cornerRadii 指定了圆角的半径,这个参数的取值是 CGSize 类型,也就意味着这里需要给出的是椭圆的半径。

*/

  • (instancetype)bezierPathWithRoundedRect:(CGRect)rect byRoundingCorners:(UIRectCorner)corners cornerRadii:(CGSize)cornerRadii;

/**

  • 以某个中心点画弧线

  • @param center 指定了圆弧所在正圆的圆心点坐标

  • @param radius 指定了圆弧所在正圆的半径

  • @param startAngle 指定了起始弧度位置 注意: 起始与结束这里是弧度

  • @param endAngle 指定了结束弧度位置

  • @param clockwise 指定了绘制方向,以时钟方向为判断基准 看下图

*/

  • (instancetype)bezierPathWithArcCenter:(CGPoint)center radius:(CGFloat)radius startAngle:(CGFloat)startAngle endAngle:(CGFloat)endAngle clockwise:(BOOL)clockwise;
image

图片来自网络

/**

  • 根据CGPath创建并返回一个新的UIBezierPath对象

  • @param CGPath CGPathRef

*/

  • (instancetype)bezierPathWithCGPath:(CGPathRef)CGPath;

@property(nonatomic)CGPathRef CGPath;

  • (CGPathRef)CGPathNS_RETURNS_INNER_POINTER CF_RETURNS_NOT_RETAINED;

/**

  • 设置第一个起始点到接收器

  • @param point 起点坐标

*/

  • (void)moveToPoint:(CGPoint)point;

/**

  • 附加一条直线到接收器的路径

  • @param point 要到达的坐标

*/

  • (void)addLineToPoint:(CGPoint)point;

/**

  • 该方法就是画三次贝塞尔曲线的关键方法,以三个点画一段曲线,一般和moveToPoint:配合使用。其实端点为moveToPoint:设置,终止端点位为endPoint;。控制点1的坐标controlPoint1,这个参数可以调整。控制点2的坐标是controlPoint2。

  • @param endPoint 终点坐标

  • @param controlPoint1 控制点1

  • @param controlPoint2 控制点2 看下图

*/

  • (void)addCurveToPoint:(CGPoint)endPoint controlPoint1:(CGPoint)controlPoint1 controlPoint2:(CGPoint)controlPoint2;
image

图片来自网络

/**

  • 画二次贝塞尔曲线,是通过调用此方法来实现的。一般和moveToPoint:配合使用。endPoint终端点,controlPoint控制点,对于二次贝塞尔曲线,只有一个控制点

  • @param endPoint 终点坐标

  • @param controlPoint 控制点 看下图

*/

  • (void)addQuadCurveToPoint:(CGPoint)endPoint controlPoint:(CGPoint)controlPoint;
image

图片来自网络

/**

  • 添加一个弧线与bezierPathWithArcCenter:radius:startAngle:endAngle:clockwise:区别是bezierPathWithArcCenter它是初始化一个弧线,addArcWithCenter是添加一个弧线,共同点就是参数都一样

  • @param center 指定了圆弧所在正圆的圆心点坐标

  • @param radius 指定了圆弧所在正圆的半径

  • @param startAngle 指定了起始弧度位置

  • @param endAngle 指定了结束弧度位置

  • @param clockwise 指定了绘制方向,以时钟方向为判断基准

*/

  • (void)addArcWithCenter:(CGPoint)center radius:(CGFloat)radius startAngle:(CGFloat)startAngle endAngle:(CGFloat)endAngle clockwise:(BOOL)clockwise NS_AVAILABLE_IOS(4_0);

/**

  • 闭合线使用这个方法起始点与终点将相连

*/

  • (void)closePath;

/**

  • 移除所有坐标点

*/

  • (void)removeAllPoints;

// Appending paths

// 添加一个paths UIBezierPath

  • (void)appendPath:(UIBezierPath *)bezierPath;

// Modified paths

// 创建并返回一个与当前路径相反的新的贝塞尔路径对象

  • (UIBezierPath *)bezierPathByReversingPath NS_AVAILABLE_IOS(6_0);

// Transforming paths

// 用指定的仿射变换矩阵变换路径的所有点

  • (void)applyTransform:(CGAffineTransform)transform;

// Path info

// 该值指示路径是否有任何有效的元素。

@property(readonly,getter=isEmpty)BOOL empty;

// 路径包括的矩形

@property(nonatomic,readonly)CGRect bounds;

// 图形路径中的当前点

@property(nonatomic,readonly)CGPoint currentPoint;

// 接收器是否包含指定的点

  • (BOOL)containsPoint:(CGPoint)point;

// Drawing properties

// 线宽

@property(nonatomic)CGFloat lineWidth;

typedef CF_ENUM(int32_t, CGLineCap) {

kCGLineCapButt,  默认的

kCGLineCapRound, 轻微圆角

kCGLineCapSquare 正方形

};

// 端点类型

@property(nonatomic)CGLineCap lineCapStyle;

typedef CF_ENUM(int32_t, CGLineJoin) {

kCGLineJoinMiter, 默认的表示斜接

kCGLineJoinRound, 圆滑衔接

kCGLineJoinBevel  斜角连接

};

// 连接类型

@property(nonatomic)CGLineJoin lineJoinStyle;

// 最大斜接长度 斜接长度指的是在两条线交汇处内角和外角之间的距离

@property(nonatomic)CGFloat miterLimit;// Used when lineJoinStyle is kCGLineJoinMiter

image

/*

最大斜接长度 斜接长度指的是在两条线交汇处内角和外角之间的距离

只有lineJoin属性为kCALineJoinMiter时miterLimit才有效

边角的角度越小,斜接长度就会越大。

为了避免斜接长度过长,我们可以使用 miterLimit属性。

如果斜接长度超过 miterLimit的值,边角会以 lineJoin的 "bevel"即kCALineJoinBevel类型来显示

*/

image

// 确定弯曲路径短的绘制精度的因素

@property(nonatomic)CGFloat flatness;

// 一个bool值指定even-odd规则是否在path可用

@property(nonatomic)BOOL usesEvenOddFillRule;// Default is NO. When YES, the even-odd fill rule is used for drawing, clipping, and hit testing.

// 设置线型 可设置成虚线

CGFloat pattern[] = {1,1};

  • (void)setLineDash:(nullableconst CGFloat *)pattern count:(NSInteger)count phase:(CGFloat)phase;

// 检索线型

  • (void)getLineDash:(nullableCGFloat )pattern count:(nullableNSInteger)count phase:(nullableCGFloat *)phase;

// Path operations on the current graphics context 当前图形上下文中的路径操作:

// 填充颜色

  • (void)fill;

// 利用当前绘图属性沿着接收器的路径绘制

  • (void)stroke;

// These methods do not affect the blend mode or alpha of the current graphics context

// 用指定的混合模式和透明度值来描绘受接收路径所包围的区域

  • (void)fillWithBlendMode:(CGBlendMode)blendMode alpha:(CGFloat)alpha;

// 使用指定的混合模式和透明度值沿着接收器路径。绘制一行

  • (void)strokeWithBlendMode:(CGBlendMode)blendMode alpha:(CGFloat)alpha;

// 剪切被接收者路径包围的区域该路径是带有剪切路径的当前绘图上下文。使得其成为我们当前的剪切路径

  • (void)addClip;

实践~敲出如下图代码

image
  • (void)drawRect:(CGRect)rect {

    UIColor *brushColor = [UIColorwhiteColor];

    // 根据一个Rect 画一个矩形曲线

    UIBezierPath *rectangular = [UIBezierPathbezierPathWithRect:CGRectMake(5,5, 30, 30)];

    [PNRed set];

    [rectangular fill];

    [brushColor set];

    [rectangular stroke];

    // 根据一个Rect画一个椭圆曲线 Rect为正方形时画的是一个圆

    UIBezierPath *oval = [UIBezierPathbezierPathWithOvalInRect:CGRectMake(40,5, 50,30)];

    [PNBlue set];

    [oval fill];

    [brushColor set];

    [oval stroke];

    // 根据一个Rect 画一个圆角矩形曲线 (Radius:圆角半径) 当Rect为正方形时且Radius等于边长一半时画的是一个圆

    UIBezierPath *roundedRect = [UIBezierPathbezierPathWithRoundedRect:CGRectMake(95,5, 40,30) cornerRadius:5];

    [PNStarYellow set];

    [roundedRect fill];

    [brushColor set];

    [roundedRect stroke];

    // 根据一个Rect针对四角中的某个或多个角设置圆角

    UIBezierPath *roundedRect2 = [UIBezierPathbezierPathWithRoundedRect:CGRectMake(140,5, 40,30) byRoundingCorners:UIRectCornerTopLeft|UIRectCornerBottomRightcornerRadii:CGSizeMake(10,50)];

    [PNFreshGreen set];

    [roundedRect2 fill];

    [brushColor set];

    [roundedRect2 stroke];

    // 以某个中心点画弧线

    UIBezierPath *arcPath = [UIBezierPathbezierPathWithArcCenter:CGPointMake(200,15) radius:20startAngle:0endAngle:degreesToRadian(90)clockwise:YES];

    [brushColor set];

    [arcPath stroke];

    // 添加一个弧线

    UIBezierPath *arcPath2 = [UIBezierPathbezierPath];

    [arcPath2 moveToPoint:CGPointMake(230,30)];

    [arcPath2 addArcWithCenter:CGPointMake(265,30) radius:25startAngle:degreesToRadian(180)endAngle:degreesToRadian(360)clockwise:YES];

    // 添加一个UIBezierPath

    [arcPath2 appendPath:[UIBezierPathbezierPathWithArcCenter:CGPointMake(265,30) radius:20startAngle:0endAngle:M_PI*2clockwise:YES]];

    [PNStarYellow set];

    [arcPath2 stroke];

    // 根据CGPath创建并返回一个新的UIBezierPath对象

    UIBezierPath *be = [selfbezierPathWithCGPath];

    [PNRed set];

    [be stroke];

    // 三角形

    UIBezierPath *triangle = [UIBezierPathbezierPath];

    [triangle moveToPoint:CGPointMake(145,165)];

    [triangle addLineToPoint:CGPointMake(155,185)];

    [triangle addLineToPoint:CGPointMake(135,185)];

    [PNStarYellow set];

    [triangle fill];

// [triangle stroke];

[triangle closePath];

// 二次贝塞尔曲线

UIBezierPath *quadBe = [UIBezierPathbezierPath];

[quadBe moveToPoint:CGPointMake(30,150)];

[quadBe addQuadCurveToPoint:CGPointMake(130,150) controlPoint:CGPointMake(30,70)];

UIBezierPath *quadBe2 = [UIBezierPathbezierPath];

[quadBe2 moveToPoint:CGPointMake(160,150)];

[quadBe2 addQuadCurveToPoint:CGPointMake(260,150) controlPoint:CGPointMake(210,50)];

[quadBe2 appendPath:quadBe];

quadBe2.lineWidth = 1.5f;

quadBe2.lineCapStyle = kCGLineCapSquare;

quadBe2.lineJoinStyle = kCGLineJoinRound;

[brushColor set];

[quadBe2 stroke];

// 三次贝塞尔曲线

UIBezierPath *threePath = [UIBezierPathbezierPath];

[threePath moveToPoint:CGPointMake(30,250)];

[threePath addCurveToPoint:CGPointMake(260,230) controlPoint1:CGPointMake(120,180) controlPoint2:CGPointMake(150,260)];

threePath.lineWidth = 1.5f;

threePath.lineCapStyle = kCGLineCapSquare;

threePath.lineJoinStyle = kCGLineJoinRound;

[brushColor set];

[threePath stroke];

}

  • (UIBezierPath *)bezierPathWithCGPath {

    UIBezierPath *framePath;

    CGFloat arrowWidth = 14;

    CGMutablePathRef path =CGPathCreateMutable();

    CGRect rectangle =CGRectInset(CGRectMake(0,0, CGRectGetWidth(self.bounds),CGRectGetWidth(self.bounds)),3,3);

    CGPoint p[3] = {

    {CGRectGetMidX(self.bounds)-arrowWidth/2,CGRectGetWidth(self.bounds)-6},

    {CGRectGetMidX(self.bounds)+arrowWidth/2,CGRectGetWidth(self.bounds)-6},

    {CGRectGetMidX(self.bounds),CGRectGetHeight(self.bounds)-4}

    };

    CGPathAddRoundedRect(path, NULL, rectangle, 5, 5);

    CGPathAddLines(path, NULL, p, 3);

    CGPathCloseSubpath(path);

    // 根据CGPath创建并返回一个新的UIBezierPath对象

    framePath = [UIBezierPath bezierPathWithCGPath:path];

    CGPathRelease(path);

    return framePath;

}

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

推荐阅读更多精彩内容

  • UIBezierPath详解 我在写本篇文章之前,也没有系统学习过贝塞尔曲线,只是曾经某一次的需求需要使用到,才临...
    白水灬煮一切阅读 1,117评论 0 4
  • 使用UIBezierPath类可以创建基于矢量的路径,这个类在UIKit中。 此类是Core Graphics框架...
    XLsn0w阅读 963评论 0 2
  • UIBezierPath用于定义一个直线/曲线组合而成的路径,并且可以在自定义视图中渲染该路径。 注意:使用UIB...
    光之盐汽水阅读 17,399评论 2 29
  • 初始化方法解析 该方法将会创建一个闭合路径, 起始点是 rect 参数的origin, 并且按照顺时针方向添加直线...
    码农_会写诗阅读 233评论 0 0
  • 贝塞尔曲线(UIBezierPath)属性、方法汇总 UIBezierPath主要用来绘制矢量图形,它是基于Cor...
    AllureJM阅读 449评论 0 0