UIBezierPath学习


利用Bezier可以对一些不规则图形或者不规则的动画都能做到一些很好的处理....

关于Bezier绘制长方形,圆形,弧线,线条简书上都有很多学习资料供大家学习...

感谢简书....

我参考的是:
//www.greatytc.com/p/999ad5ae6edf
//www.greatytc.com/p/281373b6d1a8


UIBazierPath一般和CAShapeLayer配合使用的...

    UIBezierPath * path1 = [UIBezierPath bezierPath];
    path1.lineWidth = 10;
    path1.lineCapStyle = kCGLineCapRound;
    
    [path1 moveToPoint:CGPointMake(10, 10)];
    [path1 addLineToPoint:CGPointMake(100, 100)];
    
    [[UIColor redColor] setStroke];
    
    [path1 stroke];

但是如果你重写了drawrect之后你是没办法动态改变这个view的背景颜色...

参考:
http://blog.csdn.net/xyzdm123/article/details/46891001

初始设置颜色...

-(void)drawRect:(CGRect)rect
{
    [[UIColor lightGrayColor] setFill];
    UIRectFill(rect);
}

再说一下UIColor的几个方法...

在设置Bezierpath过程中都可以用到....

边框、线条、字符的颜色...

     [[UIColor blackColor] setStroke];    // 设置边框颜色
     [[UIColor blueColor] setFill];      // 设置背景填充色
     [[UIColor greenColor] set];        // 设置字符颜色

使用...

在设置bezier的路径颜色的时候...

 [[UIColor blackColor] setStroke];
// [[UIColor greenColor] set];  这两个效果是一样的
[path stroke];

在设置bezier的填充颜色的时候....

 [[UIColor blackColor] setFill];
// [[UIColor greenColor] set];  这两个效果是一样的
[path fill];

使用-聊天泡泡...

参考...

//www.greatytc.com/p/c3af3e37c95f

以前聊天泡泡都是让UI切一个图然后自己根据要求拉伸...

如果箭头在左右两边还好如果在中间的话...

拉伸会变形...

之前的做法是切三部分的图.左右拉伸中间不动...

但是这样子很麻烦...

用bezier就可以很好的解决这个问题...

通过线.圆.弧线.可以一点一旦拼接出来一个你想要的图案...

例如...

    CGFloat w = CGRectGetWidth(rect) - 10;
    CGFloat h = CGRectGetHeight(rect) - 10;
    
    CGFloat radius = 8;
    CGFloat angleWidth = 6;
    
    UIBezierPath *bezierPath = [UIBezierPath bezierPath];
    bezierPath.lineWidth = 1;
    bezierPath.lineCapStyle = kCGLineCapRound;
    bezierPath.lineJoinStyle = kCGLineJoinRound;
    
    [bezierPath moveToPoint:CGPointMake(w-angleWidth,h-radius)];
    [bezierPath addArcWithCenter:CGPointMake(w-radius-angleWidth, h-radius) radius:radius startAngle:0 endAngle:M_PI/2 clockwise:YES];
    [bezierPath addArcWithCenter:CGPointMake(radius, h-radius) radius:radius startAngle:M_PI/2 endAngle:M_PI clockwise:YES];
    [bezierPath addArcWithCenter:CGPointMake(radius,radius) radius:radius startAngle:M_PI endAngle:3*M_PI/2 clockwise:YES];
    [bezierPath addArcWithCenter:CGPointMake(w-radius-angleWidth, radius) radius:radius startAngle:3*M_PI/2 endAngle:2*M_PI clockwise:YES];
    [bezierPath addLineToPoint:CGPointMake(w-angleWidth,40/2-angleWidth)];
    [bezierPath addLineToPoint:CGPointMake(w, 40/2)];
    [bezierPath addLineToPoint:CGPointMake(w-angleWidth, 40/2+angleWidth)];

    [bezierPath closePath];
    
    [[UIColor redColor] set];
    [bezierPath stroke];
    
    [[UIColor orangeColor] set];
    [bezierPath fill];
F3C7F87B-DDCD-41BE-96F3-4A9D13F72E3B.png

听说可以用PaintCode可以自动生成bezier代码...

可以试试...

配合CAKeyframeAnimation制作路劲动画....

参考
//www.greatytc.com/p/4824fc4ce4b0
//www.greatytc.com/p/daa58c99ee1e

大概流程是这样子...

绘制一个你想要他移动动画的bezier路劲...

设置keyframe动画一些基本设置...

设置bezier的path...

    CAKeyframeAnimation *anim = [CAKeyframeAnimation animationWithKeyPath:@"position"];
    anim.fillMode=kCAFillModeRemoved;
    anim.removedOnCompletion = NO;
    anim.path = bezierPath.CGPath;
    anim.duration = 3;
    anim.repeatCount = 20;
    anim.autoreverses = YES;
    anim.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
    
    [shapeLayer addAnimation:anim forKey:nil];

具体效果可去demo中首页的UIBezierPath查看...

配合CAShapeLayer使用...

shapeLayer是一个layer可以直接加到视图的sublayer中去...

设置很方便...

不需要重写drawrect之类...

CAShapeLayer的fillcolor/strokecolor设置描边和填充...

例如:

    UIBezierPath * path3 = [UIBezierPath bezierPath];
    [path3 moveToPoint:CGPointMake(30, height*0.65)];
    [path3 addLineToPoint:CGPointMake(30, height)];
    [path3 addLineToPoint:CGPointMake(width, height)];
    [path3 addLineToPoint:CGPointMake(width, height*0.65)];
    [path3 addQuadCurveToPoint:CGPointMake(30, height*0.65) controlPoint:CGPointMake((width-30)*0.5+30, height*0.65-100)];
    
    [path3 closePath];
    
    
    CAShapeLayer * layer3 = [[CAShapeLayer alloc] init];
    layer3.fillColor = [[UIColor blueColor] colorWithAlphaComponent:0.2].CGColor;
    layer3.strokeColor = [UIColor yellowColor].CGColor;
    
    layer3.path = path3.CGPath;
    
    [superV.layer addSublayer:layer3];

效果:

D39E761A-3E45-40BC-8E2F-9D9BC1B661C5.png

通过bezier设置阴影的路径

如果有很多视图都用设置了阴影...

指定阴影的路径会解决阴影的卡顿问题...

    imageV.layer.shadowPath = [UIBezierPath bezierPathWithRect:imageV.bounds].CGPath;

画波浪线...

原理跟绘制聊天泡泡是一个道理...

可以少了很多不必要的切图...

例如

    CGFloat offY = 30;
    CGFloat offX = 10;
    
    CGFloat waveWidth = 5;
    CGFloat waveHeight = 5;
    
    CGFloat width = CGRectGetWidth(self.view.frame)-2*offX;
    
    CAShapeLayer * layer1 = [[CAShapeLayer alloc] init];
    layer1.lineWidth = 1;
    layer1.fillColor = [UIColor clearColor].CGColor;
    layer1.strokeColor = [UIColor blueColor].CGColor;
    
    UIBezierPath * path1 = [UIBezierPath bezierPath];
    [path1 moveToPoint:CGPointMake(offX, offY)];
    path1.lineJoinStyle = kCGLineJoinRound;
    
    for(int i=0; i < width/waveWidth; i++)
    {
        [path1 addLineToPoint:CGPointMake(offX+(i+0.5)*waveWidth, offY)];
        [path1 addLineToPoint:CGPointMake(offX+(i+1)*waveWidth, offY+waveHeight)];
    }
    layer1.path = path1.CGPath;
    
    [superV.layer addSublayer:layer1];

效果...

52B44F90-13AE-4717-A9E7-B0A0872FA3E6.png

项目地址点这里......

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

推荐阅读更多精彩内容