DesignModeler GestureRecgin…
GestureRecginzer:手势识别
(void)viewDidLoad {
[super
viewDidLoad];
//改变自身颜色
ActionView
*redView =
[[ActionView alloc]initWithFrame:CGRectMake(20, 20, 280, 100)];
redView.tag = 101;
[ redView addTarget:self action:@selector(changeselfBackground :)];
redView.backgroundColor = [UIColor randomClolor];
[self.view addSubview:redView];
[redView release];}
mark --Target....action 设计模式的方法实现
//改变自身颜色
(void)changeselfBackground
: (ActionView *)view{
view.backgroundColor = [UIColor randomClolor];
//给外界提供一个接口(方法),用来给ActionView
制定事件的响应对象(目标 target),以及target目标响应的方法
- (void)addTarget : (id)target action:(SEL)action;
{
id _target;//存储传入的响应对象
SEL _action;//存储响应对象执行的方法
}
@end
是自定义的视图,我们想把它封装成完成的类,一个完整的类,就是无论你再有什么样的需求,都无需去修改它的源文件
以前的处理方式不够灵活,因为ActionView创建的对象没接到触摸消息,都要自己去处理事件,所以每创建一个对象,提出一个新的需求都要区修改它的源文件,此时ActionView对象和事件就捆绑到一起了,此时耦合性太强
...action设计模式,将事件交由其他对象处理,让我们的ActionView像UIButton一样灵活,此时它只需负责通过目标干活就可以了,此时的ActionView对象和事件就不再捆绑到一起了,耦合性降低了,内聚就升高了
(void)addTarget : (id)target action:(SEL)action{
//此时在这个方法中要把外界传进来的目标对象,和目标对象要执行的方法存储起来
_target
= target;
_action
= action;
}
- (void)touchesBegan:(NSSet *)touches
withEvent:(UIEvent *)event{
对象接受到触摸事件的时候,自己不处理事件,需要由_target
来处理
...action 方法的调用
[_target
performSelector:_action withObject:self];

事件和touchView的耦合
1.制订协议(代理要完成的任务)
2.定义代理属性(存储代理对象)
3.在其他文件中指定touchView的代理对象 (帮touchView干活)
4.让代理对象服从协议(代理对象答应帮touchView)干活
5.让代理对象实现协议中的方法(代理对象知道怎么去干活)
@class
TouchView;
@protocol TouchViewDelegate
<</span>NSObject>
@optional
//刚开始触摸的时候让代理对象完成这个方法
(void)touchBeganWithTouchView
: (TouchView *)touchView;
: UIView
//第二步:第一代理属性
- (void)touchesBegan:(NSSet *)touches
withEvent:(UIEvent *)event{
//第六步:让代理对象干活
if ([_delegate respondsToSelector:@selector(touchBeganWithTouchView:)])
{
[_delegate
touchBeganWithTouchView:self];}}
()<</span>TouchViewDelegate>
@end
@implementation DelegateViewController
- (void)viewDidLoad {
[super
viewDidLoad];
self.view.backgroundColor = [UIColor yellowColor];
TouchView
*redView =
[[TouchView alloc]initWithFrame:CGRectMake(20, 30, 280, 100)];
redView.backgroundColor = [UIColor redColor];
//第三步:指定代理对象
redView.delegate = self;
[self.view addSubview:redView];
[redView release];
}
//第五步:实现协议中的方法
(void)touchBeganWithTouchView:(TouchView
*)touchView{
touchView.backgroundColor = [UIColor randomClolor];//随机颜色自己做一下封装

*gesture = [[GestureViewControlleralloc]init];
self.window.rootViewController
=
gesture;
[gesture release];
"GestureViewController.h"
{
[super
viewDidLoad];
self.view.backgroundColor
= [UIColor
colorWithPatternImage:[UIImage
imageNamed:@"444.jpg"]];
// UIGestureRecognizer 手势识别器的基类
,拓为我们提供了手势识别器的一些基本的功能,我们在屏幕上的手势全部由手势识别器来完成识别,此时我们只需要关心手势识别之后应该做出什么处理
,它由6大子类,还有一个孙子类(屏幕边缘手势,是平移手势的子类)
UIView
*redView = [[UIView
alloc]initWithFrame:CGRectMake(0,
20,
320,
500)];
redView.backgroundColor
= [UIColor
redColor];
[self.view
addSubview:redView];
[redView release];
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer
alloc]initWithTarget:self action:@selector(handleTap :)];
//配置属性
//设置轻拍手势触发时间所需的轻拍次数
tapGesture.numberOfTapsRequired = 1;//默认为1下
//设置轻拍需要的手指对象个数
tapGesture.numberOfTouchesRequired = 2;
//给redView添加轻拍的手势对象
[redView
addGestureRecognizer:tapGesture];
[tapGesture release];

(void)handleTap
: (UITapGestureRecognizer *)tapGesture{
tapGesture.view.backgroundColor = [UIColor
randomClolor];}
*longGesture = [[UILongPressGestureRecognizer
alloc]initWithTarget:self action:@selector(handleLongPress
:)];
//设置长按手势最小多长时间触发方法
longGesture.minimumPressDuration = 1;//默认为.05秒
//在视图上添加手势对象
[redView
addGestureRecognizer:longGesture];
//释放
[longGesture release];

长按手势方法实现
-
(void)
handleLongPress : (UILongPressGestureRecognizer
*)longPress{
//改变手势所在视图的父视图的颜色
//根据手势状态,选择执行相应操作
if
(longPress.state
==
UIGestureRecognizerStateBegan)
{
longPress.view.superview.backgroundColor
=
[UIColor
randomClolor];
}
*swipeGesture
= [[UISwipeGestureRecognizer
alloc]initWithTarget:self
action:@selector(handleSwipe:)];
//设置轻扫的方向
swipeGesture.direction
=
UISwipeGestureRecognizerDirectionRight;
[redView addGestureRecognizer:swipeGesture];
[swipeGesture release];

mark 轻扫手势方法的实现
-
(void)handleSwipe:
(UISwipeGestureRecognizer
*)swipeGesture{
swipeGesture.view.backgroundColor
=
[UIColor
randomClolor];
UIPanGestureRecognizer
*panGesture =
[[UIPanGestureRecognizer
alloc]initWithTarget:self
action:@selector(handlePan
: )];
[redView addGestureRecognizer:panGesture];
[panGesture release];

mark 平移手势方法的实现
-
(void)handlePan
: (UIPanGestureRecognizer
*)panGesture{
//1.获取平移增量
CGPoint
point =
[panGesture translationInView:panGesture.view];
//2.仿射变换(变形)
//第一个参数:变形之前的视图位置和大小
//第二个参数:x轴上的形变量(x轴上的增量)
//第三个参数:y轴上的形变量(y轴上的增量)
panGesture.view.transform
=
CGAffineTransformTranslate(panGesture.view.transform,point.x,
point.y);
//3.将之前的增量清0;
//CGPointZero
代表{0,0}点
CGPointMake(0,0);
[panGesture setTranslation:CGPointZero
inView:panGesture.view];
UIPinchGestureRecognizer
UIPinchGestureRecognizer
*pinchGesture
= [[UIPinchGestureRecognizer
alloc]initWithTarget:self
action:@selector(handlePinch
:)];
[redView addGestureRecognizer:pinchGesture];
[pinchGesture release];

捏合手势方法的实现
-
(void)handlePinch
: (UIPinchGestureRecognizer
*)pinchGesture{
pinchGesture.view.transform
=
CGAffineTransformScale(pinchGesture.view.transform,
pinchGesture.scale,
pinchGesture.scale);
//scale
缩放比例
//将之前的形变量置为1;
pinchGesture.scale
=
1;
UIRotationGestureRecognizer
*rotationGesture
= [[UIRotationGestureRecognizer
alloc]initWithTarget:self
action:@selector(handleRotationGesture
: )];
[redView addGestureRecognizer:rotationGesture];
[rotationGesture release];

旋转手势方法的实现
-
(void)handleRotationGesture
: (UIRotationGestureRecognizer
*)RotationResture{
RotationResture.view.transform
=
CGAffineTransformRotate(RotationResture.view.transform,
RotationResture.rotation);
//将之前的角度增量置为0
RotationResture.rotation
=
0;
//屏幕边缘的手势必须和硬件设备的边缘重合,此时这个手势才有作用
UIScreenEdgePanGestureRecognizer
*screenGesture
= [[UIScreenEdgePanGestureRecognizer
alloc]initWithTarget:self
action:@selector(handleScreenGesture:
)];
//设置屏幕的边缘
screenGesture.edges
=
UIRectEdgeLeft;
[redView addGestureRecognizer:screenGesture];
[screenGesture release];

mark 屏幕边缘手势方法的实现
-
(void)
handleScreenGesture : (UIScreenEdgePanGestureRecognizer
*)screen{
NSLog(@"小样你能行吗?");
}
DesignModeler GestureRecgin…的更多相关文章
- 高阶篇:5)仿真研究Simulation studies
本章目的:了解仿真,初步学会怎么应用仿真. 1.仿真的定义 仿真------就是用模型(物理模型或数学模型)代替实际系统进行实验和研究. 把实际系统建立成物理模型或数学模型进行研究,然后把对模型实 ...
- Fluent算例精选|03利用VOF和蒸发-冷凝模型
通过学习本算例您将获得? 1.学会基本的VOF模型设置流程 2.学会利用蒸发-冷凝模型来模拟传热沸腾 目录 1摘要4 2传热沸腾模型介绍4 3前处理4 4求解设置5 4.1启动Fluent5 4.2网 ...
随机推荐
- C# get 、set、索引器
get 与 set C#类的属性有公有属性(public)和私有属性(private).如果直接将一个属性声明为public,则该类的任意实例可以随意获取或修改该属性的值,很不安全..NET Fram ...
- python笔记十(列表生成式、字典生成式、生成器、生成器的并行)
一.列表生成式 列表生成式就是python设置的可以用来可以生成列表的. 如要生成一个0-9的列表我们可以通过以下代码实现: >>> list(range(10)) [0, 1, 2 ...
- JQuery写的一个常见的banner
大致的布局如下: <div class="banner" > <div class="pic"> ...
- GDAL C#读取shp中文属性值乱码问题
GDAL的C#版本读取shp中,如果属性值中含有中文,读出来有可能是乱码的问题,根据SWIG生成的C#代码调试发现问题所在,在Ogr.cs文件中有这么一个函数,代码如下: internal stati ...
- 20160212.CCPP体系详解(0022天)
程序片段(01):01.二维数组.c 内容概要:二维数组 #include <stdio.h> #include <stdlib.h> //01.关于栈内存开辟数组: // 诀 ...
- 干货!Android Studio快捷键VS Eclipse快捷键~亲测!
eclipse as 英文描述 中文描述 ctrl+shift+r ctrl+shift+r Navigate->File 找工作空间的文件 ctrl+shift+t ctrl+shift+t ...
- 在ubuntu上搭建交叉编译环境---arm-none-eabi-gcc
最近要开始搞新项目,基于arm的高通方案的项目. 那么,如何在ubuntu上搭建这个编译环境呢? 1.找到相关的安装包:http://download.csdn.net/download/storea ...
- Android Lollipop 5.0 经典新特性回顾
*Tamic 专注移动开发! 更多文章请关注 http://blog.csdn.net/sk719887916 虽然Android已到了7.0 ,但是我们还是不能忘怀视觉革命性改变的5.0,今天回顾下 ...
- Android4.3 屏蔽HOME按键返回桌面详解(源码环境下)
点击打开链接 首先声明我是做系统开发的(高通平台),所以下面介绍的方法并不适合应用开发者. 最经有个需求要屏蔽HOME按键返回桌面并且实现自己的功能,发现以前的方式报错用不了,上网搜索了一下,发现都是 ...
- 获取imageView的图和背景图
img1和img2都是ImageView,要把img1中的图片显示到img2中 前景(对应src属性) img2.setImageDrawable(img1.getDrawable()); 背景(对应 ...