IOS 手势详解
在IOS中手势可以让用户有很好的体验,因此我们有必要去了解一下手势。
(在设置手势是有很多值得注意的地方)
*是需要设置为Yes的点击无法响应*
*要把手势添加到所需点击的View,否则无法响应*
手势共有六种,下面我会分开介绍。
点击手势
//
// ViewController.m
// CX-手势详解
//
// Created by ma c on 16/3/24.
// Copyright © 2016年 xubaoaichiyu. All rights reserved.
// #import "ViewController.h" @interface ViewController () @property (nonatomic, strong) UIImageView * imageView; @end @implementation ViewController
#pragma mark - set_and_get
-(UIImageView *)imageView{
if (!_imageView) { _imageView = [[UIImageView alloc]init]; UIImage * image = [UIImage imageNamed:@"nvshen.jpg"]; _imageView.bounds = (CGRect){CGPointZero,image.size}; _imageView.center = self.view.center;
//交互一定要设置为YES 否则无法实现手势
_imageView.userInteractionEnabled = YES; _imageView.image = image; }
return _imageView;
}
- (void)viewDidLoad {
[super viewDidLoad]; [self.view addSubview:self.imageView]; //点击手势 UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(doAction:)]; //点击一下生效
tap.numberOfTapsRequired = ; UITapGestureRecognizer * tapNew = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(doAction:)]; //点击两下生效
tapNew.numberOfTapsRequired = ; //在imageView上添加手势
[self.imageView addGestureRecognizer:tap];
[self.imageView addGestureRecognizer:tapNew]; //当点击两下生效时,使点击一下失效
[tap requireGestureRecognizerToFail:tapNew]; } -(void)doAction:(UITapGestureRecognizer *)tap{ if (tap.numberOfTapsRequired == ) {
NSLog(@"点击一下");
}else if(tap.numberOfTapsRequired == ){
NSLog(@"点击两下");
} } @end
拖动手势
//
// ViewController.m
// CX-手势详解
//
// Created by ma c on 16/3/24.
// Copyright © 2016年 xubaoaichiyu. All rights reserved.
// #import "ViewController.h" @interface ViewController () @property (nonatomic, strong) UIImageView * imageView; @end @implementation ViewController
#pragma mark - set_and_get
-(UIImageView *)imageView{
if (!_imageView) { _imageView = [[UIImageView alloc]init]; UIImage * image = [UIImage imageNamed:@"nvshen.jpg"]; _imageView.bounds = (CGRect){CGPointZero,image.size}; _imageView.center = self.view.center;
//交互一定要设置为YES 否则无法实现手势
_imageView.userInteractionEnabled = YES; _imageView.image = image; }
return _imageView;
}
- (void)viewDidLoad {
[super viewDidLoad]; [self.view addSubview:self.imageView]; //拖动手势 UIPanGestureRecognizer * pan = [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(doAction:)]; [self.view addGestureRecognizer:pan]; } -(void)doAction:(UIPanGestureRecognizer *)pan{
//获取偏移量
CGPoint point = [pan translationInView:self.imageView]; //通过改变self。imageView的Center来实现拖动
self.imageView.center = CGPointMake(self.imageView.center.x + point.x
, self.imageView.center.y + point.y); //复位 如果不进行复位 会在改变的基础上改变 从而使效果不对
[pan setTranslation:CGPointZero inView:self.imageView]; } @end
长按手势
//
// ViewController.m
// CX-手势详解
//
// Created by ma c on 16/3/24.
// Copyright © 2016年 xubaoaichiyu. All rights reserved.
// #import "ViewController.h" @interface ViewController () @property (nonatomic, strong) UIImageView * imageView; @end @implementation ViewController
#pragma mark - set_and_get
-(UIImageView *)imageView{
if (!_imageView) { _imageView = [[UIImageView alloc]init]; UIImage * image = [UIImage imageNamed:@"nvshen.jpg"]; _imageView.bounds = (CGRect){CGPointZero,image.size}; _imageView.center = self.view.center;
//交互一定要设置为YES 否则无法实现手势
_imageView.userInteractionEnabled = YES; _imageView.image = image; }
return _imageView;
}
- (void)viewDidLoad {
[super viewDidLoad]; [self.view addSubview:self.imageView]; //长按手势 UILongPressGestureRecognizer * longPress = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(doAction:)]; [self.imageView addGestureRecognizer:longPress]; } -(void)doAction:(UILongPressGestureRecognizer *)longPress{ if (longPress.state == UIGestureRecognizerStateBegan) {
NSLog(@"开始");
}
else if (longPress.state == UIGestureRecognizerStateEnded){
NSLog(@"结束");
} } @end
轻扫手势
//
// ViewController.m
// CX-手势详解
//
// Created by ma c on 16/3/24.
// Copyright © 2016年 xubaoaichiyu. All rights reserved.
// #import "ViewController.h" @interface ViewController () @property (nonatomic, strong) UIImageView * imageView; @end @implementation ViewController
#pragma mark - set_and_get
-(UIImageView *)imageView{
if (!_imageView) { _imageView = [[UIImageView alloc]init]; UIImage * image = [UIImage imageNamed:@"nvshen.jpg"]; _imageView.bounds = (CGRect){CGPointZero,image.size}; _imageView.center = self.view.center;
//交互一定要设置为YES 否则无法实现手势
_imageView.userInteractionEnabled = YES; _imageView.image = image; }
return _imageView;
}
- (void)viewDidLoad {
[super viewDidLoad]; [self.view addSubview:self.imageView]; //轻扫手势 UISwipeGestureRecognizer * swipe = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(doAction:)];
//需要设置 默认为右
/*
默认是UISwipeGestureRecognizerDirectionRight。所需的方向刷。可指定多个方向是否会导致相同的行为(例如,UITableView滑动删除)
*/
swipe.direction = UISwipeGestureRecognizerDirectionLeft; [self.imageView addGestureRecognizer:swipe]; } -(void)doAction:(UISwipeGestureRecognizer *)swipe{ if (swipe.direction == UISwipeGestureRecognizerDirectionLeft) {
NSLog(@"左");
}
else if (swipe.direction == UISwipeGestureRecognizerDirectionRight){
NSLog(@"右");
}
else if (swipe.direction == UISwipeGestureRecognizerDirectionDown){
NSLog(@"下");
}
else if (swipe.direction == UISwipeGestureRecognizerDirectionUp){
NSLog(@"上");
}
} @end
捏合手势
(在捏合和旋转手势中我们需要一些操作)
*按住option 在触碰到触摸板的时候会出现模拟出现的两根手指*
*如果你所操作的view不在两个触摸点的位置,可以按住shift进行移动*
*当进行捏合旋转的时候,一定要把触摸板按下,才可进行操作*
//
// ViewController.m
// CX-手势详解
//
// Created by ma c on 16/3/24.
// Copyright © 2016年 xubaoaichiyu. All rights reserved.
// #import "ViewController.h" @interface ViewController () @property (nonatomic, strong) UIImageView * imageView; @end @implementation ViewController
#pragma mark - set_and_get
-(UIImageView *)imageView{
if (!_imageView) { _imageView = [[UIImageView alloc]init]; UIImage * image = [UIImage imageNamed:@"nvshen.jpg"]; _imageView.bounds = (CGRect){CGPointZero,image.size}; _imageView.center = self.view.center;
//交互一定要设置为YES 否则无法实现手势
_imageView.userInteractionEnabled = YES; _imageView.image = image; }
return _imageView;
}
- (void)viewDidLoad {
[super viewDidLoad]; [self.view addSubview:self.imageView]; //捏合手势 UIPinchGestureRecognizer * pinch = [[UIPinchGestureRecognizer alloc]initWithTarget:self action:@selector(doAction:)]; [self.imageView addGestureRecognizer:pinch]; } -(void)doAction:(UIPinchGestureRecognizer *)pinch{
//持续改变
self.imageView.transform = CGAffineTransformScale(self.imageView.transform, pinch.scale, pinch.scale);
//复位
pinch.scale = ; } @end
旋转手势
//
// ViewController.m
// CX-手势详解
//
// Created by ma c on 16/3/24.
// Copyright © 2016年 xubaoaichiyu. All rights reserved.
// #import "ViewController.h" @interface ViewController () @property (nonatomic, strong) UIImageView * imageView; @end @implementation ViewController
#pragma mark - set_and_get
-(UIImageView *)imageView{
if (!_imageView) { _imageView = [[UIImageView alloc]init]; UIImage * image = [UIImage imageNamed:@"nvshen.jpg"]; _imageView.bounds = (CGRect){CGPointZero,image.size}; _imageView.center = self.view.center;
//交互一定要设置为YES 否则无法实现手势
_imageView.userInteractionEnabled = YES; _imageView.image = image; }
return _imageView;
}
- (void)viewDidLoad {
[super viewDidLoad]; [self.view addSubview:self.imageView]; //旋转手势 UIRotationGestureRecognizer * rotation = [[UIRotationGestureRecognizer alloc]initWithTarget:self action:@selector(doAction:)]; [self.imageView addGestureRecognizer:rotation]; } -(void)doAction:(UIRotationGestureRecognizer *)rotation{
//持续改变
self.imageView.transform = CGAffineTransformRotate(self.imageView.transform, rotation.rotation);
//复位
rotation.rotation = ; } @end
有一点值得注意的是,旋转手势和捏合手势是不可以同时操作的,想要同时操作可以通过代理实现,如下。
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer;
在上面的代码实现时返回YES即可。
IOS 手势详解的更多相关文章
- 【转】IOS AutoLayout详解(三)用代码实现(附Demo下载)
转载自:blog.csdn.net/hello_hwc IOS SDK详解 前言: 在开发的过程中,有时候创建View没办法通过Storyboard来进行,又需要AutoLayout,这时候用代码创建 ...
- IOS SDK详解
来源:http://blog.csdn.net/column/details/huangwenchen-ios-sdk.html?page=1#42803301 博客专栏>移动开发专栏>I ...
- iOS路由详解
本文如题,路由详解,注定是一篇详细解释iOS路由原理及使用的文章,由于此时正在外地出差,无法详细一一写出,只能不定时的补充. 一.什么是iOS路由 路由一词来源于路由器,可以实现层级之间消息转发的功能 ...
- IOS SizeClasses 详解
SizeClasses 详解 iOS 8在应用界面的可视化设计上添加了一个新的特性-Size Classes.对于任何设备来说,界面的宽度和高度都只分为三种描述:紧凑,任意和宽松.这样开发者便可以无视 ...
- iOS模式详解—「runtime面试、工作」看我就 🐒 了 ^_^.
Write in the first[写在最前] 对于从事 iOS 开发人员来说,当提到 ** runtime时,我想都可以说出来 「runtime 运行时」和基本使用的方法.相信很多开发者跟我当初一 ...
- iOS 模式详解—「runtime面试、工作」看我就 🐒 了 ^_^.
引导 Copyright © PBwaterln Unauthorized shall not be *copy reprinted* . 对于从事 iOS 开发人员来说,所有的人都会答出「runti ...
- ios学习--详解IPhone动画效果类型及实现方法
详解IPhone动画效果类型及实现方法是本文要介绍的内容,主要介绍了iphone中动画的实现方法,不多说,我们一起来看内容. 实现iphone漂亮的动画效果主要有两种方法,一种是UIView层面的,一 ...
- IOS中的手势详解
1.点击 UITapGestureRecognizer *tap=[[UITapGestureRecognizer alloc] initWithTarget:self action:@selecto ...
- iOS WKWebView详解
UIWebView就不用说了,这个过时了,现在iOS8以后建议都使用WKWebView. WKWebView 是现代 WebKit API 在 iOS 8 和 OS X Yosemite 应用中的核心 ...
随机推荐
- Java中多态的一些简单理解
什么是多态 .面向对象的三大特性:封装.继承.多态.从一定角度来看,封装和继承几乎都是为多态而准备的.这是我们最后一个概念,也是最重要的知识点. .多态的定义:指允许不同类的对象对同一消息做出响应.即 ...
- MVC的路径查找顺序
使用MVC的朋友们,知道MVC的funny之处. 但是如果出现路径找不到,请记住以下的页面路径寻找顺序. http://www.cnblogs.com/sosoft/ 首先,知道你的Controlle ...
- SQL常用语句(2)
//计算表tb_Blog的字段个数 select count(*) from syscolumns where id=object_id('tb_Blog') 获取指定表的所有字段和字段类型 SELE ...
- jquery内容选择器(根据内容匹配元素)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- PHP程序员7小时学会Kotlin系列
这是我尝试给自己一个目标去学会一门新语言的方法.正在创作中,敬请期待! 提纲 第一小时 概念 第二小时 基础 第三小时 函数 第四小时 类与对象 第五小时 类与对象二 第六小时 DSL 第七小时 工程 ...
- FPGA中的delay与latency
delay和latency都有延迟的意义,在FPGA中二者又有具体的区别. latency出现在时序逻辑电路中,表示数据从输入到输出有效经过的时间,通常以时钟周期为单位. delay出现在组合逻辑电路 ...
- Gym 100917J---dir -C(RMQ--ST)
题目链接 http://codeforces.com/gym/100917/problem/D problem description Famous Berland coder and IT mana ...
- NYOJ 737---石子归并(GarsiaWachs算法)
原题链接 描述 有N堆石子排成一排,每堆石子有一定的数量.现要将N堆石子并成为一堆.合并的过程只能每次将相邻的两堆石子堆成一堆,每次合并花费的代价为这两堆石子的和,经过N-1次合并后成为一堆.求 ...
- Python私有变量
# 访问限制的保护,代码更加健壮 class Student(object): def __init__(self,name,score): self.__name= name self.__scor ...
- rabbitmq启动异常之error,{not_a_dets_file recovery.dets
中午,公司群里面测试人员@笔者说,早上测试服务器异常,MQ起不来,重启os了也起不来,报错,上去看下了早上又因为内存oom被内核killed了,启动了下,确实启动报错,erl vm进程起来了,但是be ...