美文网首页
绘制三角形

绘制三角形

作者: 陈世美_ | 来源:发表于2015-05-29 14:27 被阅读26次

    CGContextRef context = UIGraphicsGetCurrentContext();

    //    CGContextSetFillColorWithColor(context, [UIColor clearColor].CGColor);

    //    CGContextSetFillr

    CGContextMoveToPoint(context, 150, 10);

    CGContextAddLineToPoint(context, 150+21, 10+24);

    CGContextAddLineToPoint(context, 150+42, 10);

    CGContextClosePath(context);

    [[UIColor blackColor] setStroke];//描边的颜色

    [[UIColor redColor] setFill];//填充颜色

    CGContextDrawPath(context, kCGPathFillStroke);

                                                  kCGPathFill    无描边

                                                  kCGPathFill    只有边

    相关文章

      网友评论

          本文标题:绘制三角形

          本文链接:https://www.haomeiwen.com/subject/gngrqttx.html