-1

我在控件上使用 LongPress 并在视图中拖动不同的位置。我使用 UIGestureRecognizerStateBegan 找到了起始位置。我如何找到 UIGestureRecognizerStateChanged 位置?

4

1 回答 1

0
if( UIGestureRecognizerStateChanged)
{
            CGPoint center = snapshot.center;
            center.y = location.y;
            snapshot.center = center;
}
if (UIGestureRecognizerStateEnded)
{
     location = [longPress locationInView:self.tableView];
}
于 2016-02-26T04:46:07.643 回答