美文网首页
UI手势识别器

UI手势识别器

作者: 画个完美句号 | 来源:发表于2016-02-19 16:53 被阅读29次

   //七中手势:轻拍(tap) 长按(longPress) 旋转(rotation) 捏合(pinch) 拖拽(pan)

            // 轻扫(swipe) 屏幕边缘拖拽(screEdgePan)

   //添加图片

   UIImageView *imgView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 200, 200)];

   imgView.center = self.view.center;

   imgView.image = [UIImage imageNamed:@""];

   [self.view addSubview:imgView];

   [imgView release];

   //打开用户交互

   imgView.userInteractionEnabled = YES;

//一 轻拍(tap)

   //获取到轻拍手势时,让self调用tapAction:方法

   UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapAction:)];

   //添加手势

   [imgView addGestureRecognizer:tap];

   //内存管理

   [tap release];

   //点击次数

   tap.numberOfTapsRequired = 2;

   //手指个数

   tap.numberOfTouchesRequired = 1;

//二 长按(longPress)

   UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(longPressAction::)];

   [imgView addGestureRecognizer:longPress];

   [longPress release];

   //长按时间

   longPress.minimumPressDuration = 0.2;

//三 旋转(rotation)

   UIRotationGestureRecognizer *rotation = [[UIRotationGestureRecognizer alloc]initWithTarget:self action:@selector(rotationAction:)];

   [imgView addGestureRecognizer:rotation];

   [rotation release];

//四 捏合(pinch)

   UIPinchGestureRecognizer *pinch = [[UIPinchGestureRecognizer alloc]initWithTarget:self action:@selector(pinchAciton:)];

   [imgView addGestureRecognizer:pinch];

   [pinch release];

//五 轻扫(swipe)

   UISwipeGestureRecognizer *swipe = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(swipeAction:)];

   //默认只识别向右

   //设置方向时 最多只能设置 水平(左/右)或者垂直(上/下)

   swipe.direction = UISwipeGestureRecognizerDirectionLeft |UISwipeGestureRecognizerDirectionRight |UISwipeGestureRecognizerDirectionDown |UISwipeGestureRecognizerDirectionUp;

   [imgView addGestureRecognizer:swipe];

   [swipe release];

//六 pan(拖拽)

   UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(panAction:)];

   [imgView addGestureRecognizer:pan];

   [pan release];

//七 屏幕边缘拖拽(sreenEdgePan)

   UIScreenEdgePanGestureRecognizer *sep = [[UIScreenEdgePanGestureRecognizer alloc]initWithTarget:self action:@selector(sepAction:)];

   //需要设置拖拽的边缘

   sep.edges = UIRectEdgeLeft;

   //一般这个手势添加在VC的view上

   [self.view addGestureRecognizer:sep];

   [sep release];

相关文章

  • UI手势识别器

    - (void)viewDidLoad { [super viewDidLoad]; // Do any addi...

  • UI手势识别器

    七种手势:轻拍(tap)、长按(longPress)、旋转(rotation)、捏合(pinch)、拖拽(pan)...

  • UI手势识别器

    //七中手势:轻拍(tap) 长按(longPress) 旋转(rotation) 捏合(pinch) 拖拽(p...

  • 3.6 iOS手势识别的状态和手势识别器幕后原理

    2.2手势识别的状态和手势识别器幕后原理 (一)手势的状态 (二)离散型手势识别器和连续型手势识别器之间的对比: ...

  • Gesture手势

    手势识别器 手势识别器是对触摸事件做了封装,我们无需自己去判断某个手势是否触发,手势识别器本身起到了识别作用,我们...

  • 手势——UIGestureRecognizer

    一、简介 UIGestureRecognizer是具体手势识别器的基类。 手势识别器对象(或简单地说是手势识别器)...

  • UIGestureRecognizer

    什么是手势识别器? 手势识别器就是对触摸事件做了封装,我们不需要判断某个手势是否触发,手势识别器本身起到了识别作用...

  • 同时响应多个UIGestureRecognizer

    最近在做产品试戴,效果如下: 使用了多个手势识别器: UIRotationGestureRecognizer UI...

  • iOS手势识别

    UIGestureRecognizer手势识别器手势识别器是特殊的触摸事件UIGestureRecognizer是...

  • UIGestureRecognizer手势识别器学习笔记

    UIGestureRecognizer 具体手势识别器的基类。一个手势识别器对象,或者简单地说一个手势识别器,解耦...

网友评论

      本文标题:UI手势识别器

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