Finding longPress release Location

34 Views Asked by At

I'm Using LongPress on control and drag different positions in views. I found out the starting position using UIGestureRecognizerStateBegan. how do i found out the UIGestureRecognizerStateChanged position?

1

There are 1 best solutions below

0
On BEST ANSWER
if( UIGestureRecognizerStateChanged)
{
            CGPoint center = snapshot.center;
            center.y = location.y;
            snapshot.center = center;
}
if (UIGestureRecognizerStateEnded)
{
     location = [longPress locationInView:self.tableView];
}