如何从 uibezierpath 获取最后一个点或当前点?
How to get the last point or current point from a uibezierpath?
我正在逐点添加一条线。
...
[self->path addLineToPoint:[touch locationInView:self]];
//need to check the point(x,y) against another point ??
[self setNeedsDisplay];
...
如何提取最后一个点?
UIBezierPath
有一个名为 currentPoint
的 属性。
有关详细信息,请查看 documentation。
我正在逐点添加一条线。
...
[self->path addLineToPoint:[touch locationInView:self]];
//need to check the point(x,y) against another point ??
[self setNeedsDisplay];
...
如何提取最后一个点?
UIBezierPath
有一个名为 currentPoint
的 属性。
有关详细信息,请查看 documentation。