UIBezierPath+ CAShapeLayer简单示例

UIBezierPath+CAShapeLayer实现简单的动画


  • 首先绘制一个简单的方形线框:
    UIBezierPath *path = [UIBezierPath bezierPath];//1
    
    [path moveToPoint:CGPointMake(100, 100)];//2
    //3
    [path addLineToPoint:CGPointMake(200, 100)];
    [path addLineToPoint:CGPointMake(200, 200)];
    [path addLineToPoint:CGPointMake(100.0, 200.0)];
    [path addLineToPoint:CGPointMake(100.0, 100.0)];

  1. 通过该类方法创建了一条空白的贝塞尔曲线。
  2. path移至起始点
  3. 绘制4条直线,逆向闭合。

CAShapeLayer

在上述代码的基础上,追加以下:

    shapeLayer = [CAShapeLayer layer];//1
    shapeLayer.path = path.CGPath;//2

    //3、 填充颜色
    UIColor *fillColor = [UIColor clearColor];
    shapeLayer.fillColor = fillColor.CGColor;
    // 画笔颜色
    UIColor *strokeColor = [UIColor greenColor];
    shapeLayer.strokeColor = strokeColor.CGColor;
    //4
    shapeLayer.lineWidth = 3.0f;
    [self.view.layer addSublayer:shapeLayer];
    //5
    [self startAnimation];
  1. 创建一个CAShapeLayer实例;

(CALayer负责这些view的显示,例如view的大小、形状、弧度等,在iOS里,UIView必须支持CALayer(而 Mac OS里不是必须))

  1. 制定贝塞尔曲线为layer的shap路径

  2. 添加layer到当前视图的layer之上

  3. 动态绘制layer

- (void)startAnimation {
  CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];
  animation.duration = 2.0;
  animation.repeatCount = 100.0f;
  animation.fromValue = @0.0f;//动画从0开始
  animation.toValue = @1.0f;//到1结束
  [shapeLayer addAnimation:animation forKey:@"animatePath"];
}

运行效果:

a.gif

改造

  • 生成贝塞尔曲线亦可使用如下方式:
UIBezierPath *path = [UIBezierPath bezierPathWithRect:CGRectMake(100, 100, 200, 200)];

运行效果同上,只是此时以rect生成path,是以像素点为主,而非上面的像素,故方形大小是上面的2倍。

  • 绘制一个内切与rect的圆

    UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(100, 100, 200, 200)];
    
    a.gif
  • 2中的动画的初始点并不是我们所控制的,故修正版如下:

    UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(160, 200) radius:50 startAngle:-M_PI / 2.0 endAngle:3 * M_PI/2.0 clockwise:isClockWise];
    

    path以中心点,radius半径,并且start到end绘制圆形。

a.gif

关于角度,找到一个图解(链接

arc.png
  • 绘制一个圆角矩形:

UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(100, 100, 200, 200) cornerRadius:8.0];

![a.gif](http://upload-images.jianshu.io/upload_images/188623-d8797af7f3e2fbd9.gif?imageMogr2/auto-orient/strip)

* 绘制一个矩形,并且只在右上、右下角加圆角效果。(其中cornerRadii在x、y上分别作用)

UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(100, 100, 200, 200) byRoundingCorners:UIRectCornerTopRight|UIRectCornerBottomRight cornerRadii:CGSizeMake(20, 20)];



![a.gif](http://upload-images.jianshu.io/upload_images/188623-a9f79bdef01eff0f.gif?imageMogr2/auto-orient/strip)


---

# 二阶贝塞尔曲线等

* 二阶贝塞尔曲线

UIBezierPath *path = [UIBezierPath bezierPath];
[path moveToPoint:CGPointMake(100, 100)];
[path addQuadCurveToPoint:CGPointMake(200, 100) controlPoint:CGPointMake(160, 0)];


初始点、终点和控制点构成一个弧形。效果如下:


![a.gif](http://upload-images.jianshu.io/upload_images/188623-ad585807b07bcf27.gif?imageMogr2/auto-orient/strip)

* 三阶贝塞尔曲线

//贝塞尔控制点生成 http://www.j--d.com/bezier
[path moveToPoint:CGPointMake(9, 198)];
[path addCurveToPoint:CGPointMake(199,104) controlPoint1:CGPointMake(71, 91) controlPoint2:CGPointMake(109,197)];


  两个控制点,效果如下:


  ![a.gif](http://upload-images.jianshu.io/upload_images/188623-e0ae3ad154d3bc6c.gif?imageMogr2/auto-orient/strip)

---

# 动画控制

  贝塞尔曲线绘制时可以通过`strokeStart`和`strokeEnd`来确定曲线的长短。

UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(160, 200) radius:50 startAngle:-M_PI / 2.0 endAngle:3 * M_PI/2.0 clockwise:YES];

shapeLayer = [CAShapeLayer layer];
shapeLayer.path = path.CGPath;
// 填充颜色
UIColor *fillColor = [UIColor clearColor];
shapeLayer.fillColor = fillColor.CGColor;
// 画笔颜色
UIColor *strokeColor = [UIColor greenColor];
shapeLayer.strokeColor = strokeColor.CGColor;
shapeLayer.lineWidth = 3.0f;
[self.view.layer addSublayer:shapeLayer];


shapeLayer.strokeStart = .0f;
shapeLayer.strokeEnd = .0f;

刷新timer

self.timer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(updateStroke) userInfo:nil repeats:YES];


  • (void)updateStroke
    {
    NSNumber *startNumber=[NSNumber numberWithFloat:shapeLayer.strokeStart];
    CGFloat startValue=[startNumber floatValue];
    NSNumber *endNumber=[NSNumber numberWithFloat:shapeLayer.strokeEnd];
    CGFloat endValue=[endNumber floatValue];

    if (startValue==0&&endValue<1) {
    shapeLayer.strokeEnd+=0.1;
    }
    if (endValue==1&&startValue<1) {
    shapeLayer.strokeStart+=0.1;
    }

    if (startValue>0&&startValue==endValue) {
    shapeLayer.strokeStart=0;
    shapeLayer.strokeEnd=0;
    }
    }


运行结果如下:


  ![a.gif](http://upload-images.jianshu.io/upload_images/188623-f7b19806b759c73e.gif?imageMogr2/auto-orient/strip)


---

在drawRect:中绘制实例:

-(void)drawRect:(CGRect)rect{
path = [UIBezierPath bezierPath];
[path moveToPoint:CGPointMake(0,self.frame.size.height)];
[path addCurveToPoint:CGPointMake(self.frame.size.width, 0) controlPoint1:CGPointMake(39, 25) controlPoint2:CGPointMake(174, 199)];

path.lineWidth = 1;
UIColor *fillColor = [UIColor clearColor];
[fillColor set]; [path fill];
UIColor *strokeColor = [UIColor redColor];
[strokeColor set];
[path stroke];
}


---

总结:
* drawRect属于CoreGraphics框架,占用CPU,故性能消耗大
* CAShapLayer属于CoreAnimation框架,通过GPU渲染图形,不消耗内存,性能好。

* 











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

推荐阅读更多精彩内容

  • 前言:关于贝塞尔曲线与CAShapeLayer的学习 学习Demo演示: 贝塞尔曲线简单了解 使用UIBezier...
    麦穗0615阅读 17,857评论 18 149
  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥ios动画全貌。在这里你可以看...
    每天刷两次牙阅读 8,465评论 6 30
  • 前言 本文只要描述了iOS中的Core Animation(核心动画:隐式动画、显示动画)、贝塞尔曲线、UIVie...
    GitHubPorter阅读 3,600评论 7 11
  • 谈谈贝塞尔曲线 最近在做项目的时候,需要用到一个动画,非常简单的动画,简单到就是直接对一个View做平移… 然而虽...
    雨润听潮阅读 5,973评论 1 16
  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥iOS动画全貌。在这里你可以看...
    F麦子阅读 5,094评论 5 13