码迷,mamicode.com
首页 > 其他好文 > 详细

UIBezierPath 和 CAShapeLayer 画画图

时间:2014-07-24 23:27:33      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   strong   re   c   line   size   

  画一个头戴小圆的五边形:

- (void)drawPentagon{

    //(1)UIBezierPath对象

    UIBezierPath *aPath = [UIBezierPath bezierPath];

    //开始点

    [aPath moveToPoint:CGPointMake(100.0, 1.0)];

    //划线点

    [aPath addLineToPoint:CGPointMake(200.0, 40.0)];

    [aPath addLineToPoint:CGPointMake(160, 140)];

    [aPath addLineToPoint:CGPointMake(40.0, 140)];

    [aPath addLineToPoint:CGPointMake(0.0, 40.0)];

    [aPath closePath];

    

    //设置定点是个5*5的小圆形(自己加的)

    UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(100-5/2.0, 0, 5, 5)];

    [aPath appendPath:path];

    

    //2)加到CAShapeLayer,效果出来了

    CAShapeLayer *shapelayer = [CAShapeLayer layer];

    //设置边框颜色

    shapelayer.strokeColor = [[UIColor redColor]CGColor];

    //设置填充颜色

    shapelayer.fillColor = [[UIColor whiteColor]CGColor];

    //就是这句话在关联彼此(UIBezierPathCAShapeLayer):

    shapelayer.path = aPath.CGPath;

    [self.view.layer addSublayer:shapelayer];

}

UIBezierPath 和 CAShapeLayer 画画图,布布扣,bubuko.com

UIBezierPath 和 CAShapeLayer 画画图

标签:style   color   os   strong   re   c   line   size   

原文地址:http://blog.csdn.net/u014624597/article/details/38088997

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!