0

我想画一个像这样的箭头:

在此处输入图像描述

我怎样才能使用 CGPoint 做这样的事情?

4

1 回答 1

0

在 UIView 子视图的 -drawRect 方法中:

CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx, point1.x, point1.y);
CGContextAddLineToPoint(ctx, point2.x, point2.y);
CGContextAddLineToPoint(ctx, point3.x, point3.y);
CGContextAddLineToPoint(ctx, point1.x, point1.y);
CGContextClosePath(context);
CGContextStrokePath(ctx);
于 2012-08-01T21:14:37.330 回答