I am creating a flow chart and when user drags a node, I want to move the line connected to it. In pan handler event of the node I implemented a CGAffineTransform
to transform line, but it does not move line smoothly. Any idea how other flow chart apps handle this problem?
func panHandler(sender: UIPanGestureRecognizer) {
else if (sender.state == .Changed)
{
let translation = sender.translationInView(self)
sender.view!.center = CGPointMake(originalCenter.x + translation.x, originalCenter.y + translation.y)
//rv is the connected line, created at an other place like:
//let w = GraphViewController.calcLength(e.x, y0: e.y, x1: e2.x, y1: e2.y)
//rv = UIView(frame: CGRectMake(0, 0, CGFloat(w), 1.0))
//var angle = GraphViewController.calcAngle(e.x, y0: e.y, x1: e2.x, y1: e2.y)
//rv.transform = CGAffineTransformMakeRotation(CGFloat(angle))
var angle = GraphViewController.calcAngle(e!.x, y0: e!.y, x1: r.destination!.x, y1:r.destination!.y)
rv!.transform = CGAffineTransformMakeRotation(CGFloat(angle))
}
}
Because you don't need any touch events on the line, we could use a plain
CAShapeLayer
and update its path on pan. I assume you want to have some anchor point for the line.Define some anchor point for your line
Create some view to attach it to
Add layer & view
On pan update the layer's path
the reason for the
CATransaction
is that we want to disable implicit animations.Construct the path:
the result: