前言
这几天遇到一个问题 就是拖动手势作用在一个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 向左拖动
}
}