美文网首页
绘制折线

绘制折线

作者: 陈世美_ | 来源:发表于2015-05-29 15:03 被阅读30次

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetLineCap(context, kCGLineCapSquare);

    CGContextSetLineWidth(context, rect.size.height * 0.05);

    CGContextSetStrokeColorWithColor(context, [UIColor whiteColor].CGColor);

    CGContextBeginPath(context);

    CGContextMoveToPoint(context, rect.size.width - 0.7 * rect.size.height - 1, 0.2 * rect.size.height);

    CGContextAddLineToPoint(context, rect.size.width - 0.35 * rect.size.height - 1, 0.6 * rect.size.height);

    CGContextAddLineToPoint(context, rect.size.width - 1, 0.2 * rect.size.height);

    CGContextStrokePath(context);

    相关文章

      网友评论

          本文标题:绘制折线

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