Hi Guys I am trying to move UIImageView using the following code on UIPanGestureRecognizer
CGPoint pointMove;
pointMove.x = holderView.center.x + (currentPoint.x - lastPoint.x);
pointMove.y = holderView.center.y + (currentPoint.y - lastPoint.y);
holderView.center = pointMove;
lastPoint = currentPoint;
But this is giving a jumble on moving not moving smoothly. Please help me