美文网首页iOS学习笔记iOS开发学习
UIPanGestureRecognizer 手势中 veloc

UIPanGestureRecognizer 手势中 veloc

作者: 香橙柚子 | 来源:发表于2024-11-14 16:34 被阅读0次

UIPanGestureRecognizer 手势中有三个方法

 // 在指定视图的坐标系中,以点/秒为单位的平移速度
- (CGPoint)velocityInView:(nullable UIView *)view;  
// 手势的通用单点位置。通常是涉及到的触摸的重心
- (CGPoint)locationInView:(nullable UIView*)view;   
// 在指定视图的坐标系中进行平移
- (CGPoint)translationInView:(nullable UIView *)view; 

translationInView : 手指在视图上移动的位置(x,y)向下和向右为正,向上和向左为负。
locationInView : 手指在视图上的位置(x,y)就是手指在视图本身坐标系的位置。
velocityInView: 手指在视图上移动的速度(x,y), 正负也是代表方向,值得一体的是在绝对值上|x| > |y| 水平移动, |y|>|x| 竖直移动。

相关文章

网友评论

    本文标题:UIPanGestureRecognizer 手势中 veloc

    本文链接:https://www.haomeiwen.com/subject/sjajjjtx.html