如何从uibezierpath获取最后一点或当前点?

时间:2016-01-28 22:03:39

标签: objective-c uibezierpath

我在点到点添加一条线。

...
[self->path addLineToPoint:[touch locationInView:self]];
//need to check the point(x,y) against another point ?? 

[self setNeedsDisplay];
...

如何提取最后一点?

1 个答案:

答案 0 :(得分:0)

UIBezierPath有一个名为currentPoint的属性。

有关详细信息,请查看documentation