主页 探测UIPanGesture的滑动方向
Post
Cancel

探测UIPanGesture的滑动方向

前言

这几天遇到一个问题 就是拖动手势作用在一个view上的时候 无法区分方向

于是找到stackOverFlow上的答案 记录一下

1
2
3
4
5
6
7
8
9
10
11
12
13
- (void)panRecognized:(UIPanGestureRecognizer *)rec
{
    CGPoint vel = [rec velocityInView:self.view];
    if (vel.x > 0)
    {
        // user dragged towards the right 向右拖动
    }
    else
    {
        // user dragged towards the left 向左拖动
    }
}

参考

该博客文章由作者通过 CC BY 4.0 进行授权。

iOS抖音点赞动画实现

iOS抖音的转场动画