单试图控制器——6种基本触摸手势

来源:互联网 发布:一拍两散林夕 知乎 编辑:程序博客网 时间:2024/06/05 18:47

定义部分

   //1.轻拍手势

    //    UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(changViewBackgroundColor:)];

    //    tapGesture.numberOfTapsRequired = 2;//需要点击两次触法

    //    tapGesture.numberOfTouchesRequired = 2;//需要两根手指点击触法

    //    [aView addGestureRecognizer:tapGesture];

    

   //2.长按手势

    //    UILongPressGestureRecognizer *longPerss = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(changViewBackgroundColor:)];

    //    longPerss.minimumPressDuration = 2.0;//设置长按触发的最短时间

    //    [aView addGestureRecognizer:longPerss];

   //长按手势在结束的时候会再次调用该方法,设置state值设为只在开始触法时调用该方法。

    //    if (tap.state == UIGestureRecognizerStateBegan)

    

    //3.轻扫手势

    //    UISwipeGestureRecognizer *swipeGesture = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(changViewBackgroundColor:)];

    //    swipeGesture.direction = UISwipeGestureRecognizerDirectionUp;//设置触法的方向为从下到上,初始为从左至右

    //    [aView addGestureRecognizer:swipeGesture];

    

    //4.拖动手势

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

//    [aView addGestureRecognizer:panGesture];

    

    //5.捏合手势

//    UIPinchGestureRecognizer *pinchGesture = [[UIPinchGestureRecognizer alloc]initWithTarget:self action:@selector(pinchAction:)];

//    [aView addGestureRecognizer:pinchGesture];

    

    //6.旋转手势

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

    [aView addGestureRecognizer:rotationGesture];

实现部分

//- (void)changViewBackgroundColor:(UISwipeGestureRecognizer *)tap

//{

//    UIView *aView = tap.view;

//    aView.backgroundColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];

//    NSLog(@"tap");

//}

------------------------------------------------------------------------我是分割线---------------------------------------------------------------------

//- (void)panAction:(UIPanGestureRecognizer *)panGesture

//{

//    //获得的偏移量是基于手指触摸初始点的偏移量

//    CGPoint offsetPoint = [panGesture translationInView:panGesture.view];

//    NSLog(@"offset point = %@",NSStringFromCGPoint(offsetPoint));

//    //更改Viewtransform

//    panGesture.view.transform = CGAffineTransformMakeTranslation(offsetPoint.x, offsetPoint.y);

//}

------------------------------------------------------------------------我是分割线---------------------------------------------------------------------

//- (void)pinchAction:(UIPinchGestureRecognizer *)pinch

//{

//    NSLog(@"scale = %f",pinch.scale);

//    //View缩放

//    pinch.view.transform = CGAffineTransformMakeScale(pinch.scale, pinch.scale);

//}

------------------------------------------------------------------------我是分割线---------------------------------------------------------------------

- (void)rotationAction:(UIRotationGestureRecognizer *)rotation

{

    NSLog(@"rotation = %f",rotation.rotation);

    //View旋转

    rotation.view.transform = CGAffineTransformMakeRotation(rotation.rotation);

}


0 0
原创粉丝点击