iOS手势篇(五)-UIPanGestureRecognizer详解

UIPanGestureRecognizer是iOS开发中不怎么常用的一个拖动(拖拽)手势.
打开UIPanGestureRecognizer.h头文件

/// 属性
@property (nonatomic)          NSUInteger minimumNumberOfTouches __TVOS_PROHIBITED;   // default is 1. the minimum number of touches required to match
@property (nonatomic)          NSUInteger maximumNumberOfTouches __TVOS_PROHIBITED;   // default is UINT_MAX. the maximum number of touches that can be down
属性 默认值 说明
minimumNumberOfTouches 1 识别拖动手势需要的最少的手指数,少于这个数目无法识别
maximumNumberOfTouches UINT_MAX 识别拖动手势限制的最大的手指数,超过这个数目无法识别
///  方法
- (CGPoint)translationInView:(nullable UIView *)view;                        // translation in the coordinate system of the specified view
- (void)setTranslation:(CGPoint)translation inView:(nullable UIView *)view;

- (CGPoint)velocityInView:(nullable UIView *)view;                           // velocity of the pan in points/second in the coordinate system of the specified view
方法 说明
- (CGPoint)translationInView:(nullable UIView *)view; 获取到的是移动后手指在相对坐标系内移动的距离
- (void)setTranslation:(CGPoint)translation inView:(nullable UIView *)view; 一般在Action内计算偏移量的时候,使用该方法将偏移量置位0(偏移量是一直累加的,不会自动清零)
- (CGPoint)velocityInView:(nullable UIView *)view; 这个可以获取在View中的手势的平移速度

你可能感兴趣的:(UIKit手势)