码迷,mamicode.com
首页 > 其他好文 > 详细

手势识别(拖动,旋转,捏合)

时间:2017-06-11 23:23:45      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:target   view   mtr   移动   poi   get   with   selector   ipa   

 09-手势识别(拖动,旋转,捏合)

    1.平移    
          UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self
                                                                      action:@selector(pan:)];
           添加手势
          [self.imageV addGestureRecognizer:pan];
          
          实现手势方法
           手指在屏幕上移动进调用
            - (void)pan:(UIPanGestureRecognizer *)pan{
                获取当前手指移动的偏移量
                CGPoint transP =  [pan translationInView:self.imageV];
                NSLog(@"%@",NSStringFromCGPoint(transP));
                Make它会清空上一次的形变.
                self.imageV.transform = CGAffineTransformMakeTranslation(transP.x, transP.y);
                
                self.imageV.transform = CGAffineTransformTranslate(self.imageV.transform, 
                                                                           transP.x, transP.y);
                复位,相对于上一次.
                [pan  setTranslation:CGPointZero inView:self.imageV];
            }

    2.旋转
          
        添加旋转手势
        UIRotationGestureRecognizer *rotation = [[UIRotationGestureRecognizer alloc] 
                                     initWithTarget:self action:@selector(rotation:)];
        设置代理,设置代理的目的就让它能够同时支持旋转跟缩放
        rotation.delegate = self;
        添加手势
        [self.imageV addGestureRecognizer:rotation];
        
        
        当旋转时调用
        - (void)rotation:(UIRotationGestureRecognizer *)rotation{
            旋转也是相对于上一次
            self.imageV.transform = CGAffineTransformRotate(self.imageV.transform, 
                                                                 rotation.rotation);
            设置代理,设置代理的目的就让它能够同时支持旋转跟缩放
            rotation.delegate = self;
            也要做复位操作
            rotation.rotation = 0;
        }
    
    3.添加缩放手势
        添加缩放手势
        UIPinchGestureRecognizer *pinch = [[UIPinchGestureRecognizer alloc]                                             initWithTarget:self action:@selector(pinch:)];
        
       [self.imageV addGestureRecognizer:pinch];

        
        缩放手势时调用
        -(void)pinch:(UIPinchGestureRecognizer *)pinch{
            平移也是相对于上一次
            self.imageV.transform = CGAffineTransformScale(self.imageV.transform, pinch.scale, 
                                                                                  pinch.scale);
            复位
            pinch.scale = 1;
        }

手势识别(拖动,旋转,捏合)

标签:target   view   mtr   移动   poi   get   with   selector   ipa   

原文地址:http://www.cnblogs.com/xufengyuan/p/6986600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!