Questions tagged «gestures»

4
iOS中的Pan和Swipe有什么区别?
听起来很简单.. 握住触控板,移动手指,然后释放 ..但不知何故没有触发滑动(而是触发了平移) UISwipeGestureRecognizer *swipeGesture = [[UISwipeGestureRecognizer alloc] initWithTarget:v action:@selector(handleSwipe:)]; swipeGesture.direction= UISwipeGestureRecognizerDirectionUp; [v addGestureRecognizer:swipeGesture]; 潘由上述序列代替。 UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:v action:@selector(handlePan:)]; [v addGestureRecognizer: panGesture]; 如果对pan进行了注释,则可以用相同的手势来识别滑动。有了这个,有两个问题: 平移和滑动之间有什么区别? 如何模拟iPhone模拟器上的滑动?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.