我的编程空间,编程开发者的网络收藏夹
学习永远不晚

iOS开发中的几个手势操作实例分享

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

iOS开发中的几个手势操作实例分享

手势操作---识别单击还是双击 在视图上同时识别单击手势和双击手势的问题在于,当检测到一个单击操作时,无法确定是确实是一个单击操作或者只是双击操作中的第一次点击。解决这个问题的方法就是:在检测到单击时,需要等一段时间等待第二次点击,如果没有第二次点击,则为单击操作;如果有第二次点击,则为双击操作。 检测手势有两种方法,一种是定制子视图,重写视图从UIResponder类中继承来的事件处理方法,即touchesBegan:withEvent:等一系列方法来检测手势;另一个方法是使用手势识别器,即UIGestureRecognizer的各种具体子类。 一.重写事件处理方法

- (id)init {      if ((self = [super init])) {          self.userInteractionEnabled = YES;          self.multipleTouchEnabled = YES;          // ...      }      return self;  }  -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event  {      [NSObject cancelPreviousPerformRequestsWithTarget:self];      UITouch *touch = [touches anyObject];      CGPoint touchPoint = [touch locationInView:self];        if (touch.tapCount == 1) {          [self performSelector:@selector(handleSingleTap:) withObject:[NSValue valueWithCGPoint:touchPoint] afterDelay:0.3];      }else if(touch.tapCount == 2)      {          [self handleDoubleTap:[NSValue valueWithCGPoint:touchPoint]];      }  }    -(void)handleSingleTap:(NSValue*)pointValue  {      CGPoint touchPoint = [pointValue CGPointValue];      //...  }    -(void)handleDoubleTap:(NSValue*)pointValue  {      CGPoint touchPoint = [pointValue CGPointValue];      //...  } 

首先确认定制视图的userInteractionEnabled和multipleTouchEnabled属性都为YES. 在touchesEnded:withEvent:方法中,如果是第一次触摸结束,则cancelPreviousPerformRequestsWithTarget:方法不会起作用,因为self未调度任何方法,此时tapCount为1,使用performSelector:withObject:afterDelay:调用单击事件处理方法,在0.3s钟后执行。

[self performSelector:@selector(handleSingleTap:) withObject:[NSValue valueWithCGPoint:touchPoint] afterDelay:0.3];

如果这是一个单击操作,则后面0.3钟内不会再有触摸事件,则handleSingleTap:方法执行,这样识别出了单击操作。 如果这是一个双击操作,则第二次点击在0.3s内触发,在第二次触摸操作的touchesEnded:withEvent:方法中,cancelPreviousPerformRequestsWithTarget:首先会取消之前对handleSingleTap:方法的调度,使之不会执行,然后在调用handleDoubleTap:方法处理双击操作。 二.使用Gesture Recognizer 使用Gesture Recognizer识别就会简单许多,只需添加两个手势识别器,分别检测单击和双击事件,设置必要的属性即可。

- (id)init {      if ((self = [super init])) {      self.userInteractionEnabled = YES;          UITapGestureRecognizer *singleTapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(handleSingleTap:)];          singleTapGesture.numberOfTapsRequired = 1;          singleTapGesture.numberOfTouchesRequired  = 1;          [self addGestureRecognizer:singleTapGesture];            UITapGestureRecognizer *doubleTapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(handleDoubleTap:)];          doubleTapGesture.numberOfTapsRequired = 2;          doubleTapGesture.numberOfTouchesRequired = 1;          [self addGestureRecognizer:doubleTapGesture];            [singleTapGesture requireGestureRecognizerToFail:doubleTapGesture];      }      return self;  }  -(void)handleSingleTap:(UIGestureRecognizer *)sender{      CGPoint touchPoint = [sender locationInView:self];      //...  }  -(void)handleDoubleTap:(UIGestureRecognizer *)sender{      CGPoint touchPoint = [sender locationInView:self];      //...  } 

唯一需要注意的是

[singleTapGesture requireGestureRecognizerToFail:doubleTapGesture]; 

这句话的意思时,只有当doubleTapGesture识别失败的时候(即识别出这不是双击操作),singleTapGesture才能开始识别,同我们一开始讲的是同一个问题。

UIGestureRecognizer小应用 1、轻拍手势:双指、单击,修改imageView的frame为(0,0,320,200) 2、长按手指:单指,修改imageView的alpha=0.5 3、实现平移、旋转、捏合 4、轻扫:竖向轻扫实现图:像随机切换显示;横向轻扫实现:图像消失,随机修改imageview的背景颜色 5、imageview每次只能添加一种手势识别器。

#define _originalRect CGRectMake(10, 50, 300, 450)  #define _originalImageName  @"h4.jpeg"    #import "HMTRootViewController.h"    @interface HMTRootViewController (){        UITapGestureRecognizer       * _tapGesture;      UILongPressGestureRecognizer * _longGesture;      UIPanGestureRecognizer       * _panGesture;      UIRotationGestureRecognizer  * _rotateGesture;      UIPinchGestureRecognizer     * _pinchGesture;      UISwipeGestureRecognizer     * _verticalSwipeGesture;      UISwipeGestureRecognizer     * _horizontanlSwipeGesture;      BOOL isTopDownOfRightLeft;    // 垂直滑动是YES,水平滑动是NO        }    @property (nonatomic,retain) UIButton * button;  @property (nonatomic,retain) UIImageView * imageView;    @end    @implementation HMTRootViewController    - (void)dealloc{            RELEASE_SAFELY(_imageView);      RELEASE_SAFELY(_button);      [super dealloc];    }    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  {      self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];      if (self) {          // Custom initialization          isTopDownOfRightLeft = YES;      }      return self;  }    - (void)viewDidLoad  {      [super viewDidLoad];      // Do any additional setup after loading the view.            [self createButtonView];      [self createImageView];    }    #pragma mark - 设置图像  - (void)createImageView{            self.imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:_originalImageName]];      _imageView.frame = CGRectMake(10, 50, 300, 450);      _imageView.userInteractionEnabled = YES;      [self.view addSubview:_imageView];      [_imageView release];  }        #pragma mark - 设置手势    #pragma mark  点击手势  - (void)createTapGestureRecognizer{             _tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(TapGestureRecognizer:)];      _tapGesture.numberOfTapsRequired = 1;      _tapGesture.numberOfTouchesRequired = 2;      [self.imageView addGestureRecognizer:_tapGesture];      [_tapGesture release];    }    - (void)TapGestureRecognizer:(UITapGestureRecognizer *)tapGesture{        self.imageView.frame = CGRectMake(0, 0, 320, 200);      NSLog(@"%@",NSStringFromCGRect(self.imageView.frame));    }     #pragma mark  长按手势  - (void)createLongGestureRecognizer{            _longGesture = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(longGestureRecognizer:)];      _longGesture.numberOfTouchesRequired = 1;      _longGesture.minimumPressDuration = 1.0;      [self.imageView addGestureRecognizer:_longGesture];      [_longGesture release];        }    - (void)longGestureRecognizer:(UILongPressGestureRecognizer *)longGesture{        self.imageView.alpha = 0.5;      NSLog(@"%s",__FUNCTION__);    }    #pragma mark 平移拖拽手势  - (void)createPanGestureRecognizer{            _panGesture = [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(panGestureRecognizer:)];      [self.imageView addGestureRecognizer:_panGesture];      [_panGesture release];        }    - (void)panGestureRecognizer:(UIPanGestureRecognizer *)panGesture{            NSLog(@"%s",__FUNCTION__);         CGPoint txty = [panGesture translationInView:self.view];      self.imageView.transform = CGAffineTransformTranslate(self.imageView.transform, txty.x, txty.y);            [panGesture setTranslation:CGPointMake(0, 0) inView:self.view];        }    #pragma mark 旋转手势  - (void)createRotationGestureRecognizer{                  _rotateGesture = [[UIRotationGestureRecognizer alloc]initWithTarget:self action:@selector(rotationGestureRecognizer:)];      [self.imageView addGestureRecognizer:_rotateGesture];      [_rotateGesture release];        }    - (void)rotationGestureRecognizer:(UIRotationGestureRecognizer *)rotateGesture{            NSLog(@"%s",__FUNCTION__);      self.imageView.transform = CGAffineTransformRotate(self.imageView.transform, rotateGesture.rotation);      rotateGesture.rotation = 0;        }    #pragma mark 捏合缩放手势  - (void)createPinchGestureRecognizer{            _pinchGesture = [[UIPinchGestureRecognizer alloc]initWithTarget:self action:@selector(pinchGestureRecognizer:)];      [self.imageView addGestureRecognizer:_pinchGesture];      [_pinchGesture release];        }    - (void)pinchGestureRecognizer:(UIPinchGestureRecognizer *)pinchGesture{            NSLog(@"%s",__FUNCTION__);      self.imageView.transform = CGAffineTransformScale(self.imageView.transform, pinchGesture.scale, pinchGesture.scale);      pinchGesture.scale = 1;        }    #pragma mark - 轻扫手势  #pragma mark 上下 竖 垂直轻扫  - (void)createVerticalSwipeGestureRecognizer{           _verticalSwipeGesture = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(swipeGestureRecognizer:)];      _verticalSwipeGesture.direction = UISwipeGestureRecognizerDirectionUp | UISwipeGestureRecognizerDirectionDown;      [self.imageView addGestureRecognizer:_verticalSwipeGesture];      [_verticalSwipeGesture release];  }    #pragma mark 水平 左右轻扫  - (void)createHorizontanlSwipeGesture{            _horizontanlSwipeGesture = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(swipeGestureRecognizer:)];      _horizontanlSwipeGesture.direction = UISwipeGestureRecognizerDirectionLeft |UISwipeGestureRecognizerDirectionRight;      [self.imageView addGestureRecognizer:_horizontanlSwipeGesture];        }    - (void)swipeGestureRecognizer:(UISwipeGestureRecognizer *)swipeGesture{            NSLog(@"%s",__FUNCTION__);           if (swipeGesture.direction == (UISwipeGestureRecognizerDirectionUp|UISwipeGestureRecognizerDirectionDown)) {          self.imageView.image = [UIImage imageNamed:[NSString stringWithFormat:@"h%i.jpeg",arc4random()%7+1]];          ;        }else if (swipeGesture.direction == (UISwipeGestureRecognizerDirectionLeft|UISwipeGestureRecognizerDirectionRight)){                self.imageView.image = nil;          self.imageView.backgroundColor = [UIColor colorWithRed:arc4random()%256/255.0 green:arc4random()%256/255.0 blue:arc4random()%256/255.0 alpha:1.0];      }  }      #pragma mark - 设置按钮  - (void)createButtonView{            NSArray * buttonArray = @[@"轻点",@"长按",@"平移",@"旋转",@"捏合",@"轻扫"];            for (int i = 0; i < [buttonArray count]; i++) {                    self.button = [UIButton buttonWithType:UIButtonTypeSystem];          _button.frame = CGRectMake(10+50*i, 500, 50, 48);          [_button setTitle:[buttonArray objectAtIndex:i] forState:UIControlStateNormal];          [_button addTarget:self action:@selector(onClikButton:) forControlEvents:UIControlEventTouchUpInside];          _button.tag = i;          [self.view addSubview:_button];      }      }    - (void)onClikButton:(UIButton *)button{            [self resetImageView];      switch (button.tag) {          case 0:                  [self createTapGestureRecognizer];              break;          case 1:                 [self createLongGestureRecognizer];              break;          case 2:                        [self createPanGestureRecognizer];              break;          case 3:                           [self createRotationGestureRecognizer];              break;          case 4:                            [self createPinchGestureRecognizer];              break;          case 5:              if (isTopDownOfRightLeft == YES) {                  [self createVerticalSwipeGestureRecognizer];                  isTopDownOfRightLeft = NO;              } else {                  [self createHorizontanlSwipeGesture];                  isTopDownOfRightLeft = YES;              }              break;          default:              break;      }        }    #pragma mark - 重置imageView  - (void)resetImageView  {      for (int i = 0; i < [self.imageView.gestureRecognizers count]; i++) {          [self.imageView removeGestureRecognizer:[self.imageView.gestureRecognizers objectAtIndex:i]];      }      self.imageView.alpha = 1.0;      self.imageView.transform = CGAffineTransformIdentity;      self.imageView.frame = _originalRect;      self.imageView.image = [UIImage imageNamed:_originalImageName];  }      - (void)didReceiveMemoryWarning  {      [super didReceiveMemoryWarning];      // Dispose of any resources that can be recreated.  }    @end 

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

iOS开发中的几个手势操作实例分享

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

iOS开发中的几个手势操作实例分享

手势操作---识别单击还是双击 在视图上同时识别单击手势和双击手势的问题在于,当检测到一个单击操作时,无法确定是确实是一个单击操作或者只是双击操作中的第一次点击。解决这个问题的方法就是:在检测到单击时,需要等一段时间等待第二次点击,如果没有
2022-05-26

Android游戏开发:实现手势操作切换图片的实例

对于Android 的手势不光在软件中会经常用到,比如浏览器中的翻页,滚动页面等等;当然其实在我们开发Android游戏的时候加上了Android手势操作更会让游戏增加一个亮点,比如一般的CAG、PUZ等类型的游戏选择关卡、简
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录