This may seem like such a newbie question, but i want to draw a line From Two Points for Specific Height
i've Done like This
UIBezierPath *path = [UIBezierPath bezierPath];
[path moveToPoint:CGPointMake(point1.x,point1.y)];
[path addLineToPoint:CGPointMake(point2.x,point2.y)];
CAShapeLayer *shapeLayer = [CAShapeLayer layer];
shapeLayer.path = [path CGPath];
shapeLayer.strokeColor = [[UIColor greenColor] CGColor];
shapeLayer.lineWidth = 0.5;
shapeLayer.fillColor = [[UIColor clearColor] CGColor];
[view.layer addSublayer:shapeLayer];
Edit :
for example , See above image : i want to extend vertical line (lower lips to upper lips point) but i have only two points 1. lower lips point and 2. mouth center point . . .