标签: objective-c uibezierpath
我在点到点添加一条线。
... [self->path addLineToPoint:[touch locationInView:self]]; //need to check the point(x,y) against another point ?? [self setNeedsDisplay]; ...
如何提取最后一点?
答案 0 :(得分:0)
UIBezierPath有一个名为currentPoint的属性。
UIBezierPath
currentPoint
有关详细信息,请查看documentation。