绘制折线
2015-05-29 本文已影响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);