UIKit框架之UIGestureRecognizer

---恢复内容开始---

1.继承链:NSObject

2.UIGestureRecognizer的子类有以下:

  • UITapGestureRecognizer  :点击
  • UIPinchGestureRecognizer  :捏合
  • UIRotationGestureRecognizer  :旋转
  • UISwipeGestureRecognizer  :扫
  • UIPanGestureRecognizer  :拖动
  • UIScreenEdgePanGestureRecognizer  :拖动,不过要从侧边拖动
  • UILongPressGestureRecognizer  :长按

3.想要使用手势一系列的行为需要遵守 UIGestureRecognizerDelegate协议

4.初始化手势识别器

    (1)- (instancetype)initWithTarget:(id)target
                        action:(SEL)action  :为一个对象初始化和分配空间,并设定手势的行为

5.添加和移除target和行为

    (1)- (void)addTarget:(id)target
           action:(SEL)action  :为手势识别器对象添加一个target,并设定指定的行为

    (2)- (void)removeTarget:(id)target
              action:(SEL)action  :从手势识别器中移除指定的target和指定的action

6.获取手势的touches和位置

    (1)- (CGPoint)locationInView:(UIView *)view  :返回指定视图被触摸的位置

    (2)- (CGPoint)locationOfTouch:(NSUInteger)touchIndex
                    inView:(UIView *)view  :触摸点相对于指定视图的位置

    (3)- (NSUInteger)numberOfTouches  :触摸点的数量

7.获取手势的状态和视图

    (1)@property(nonatomic, readonly) UIGestureRecognizerStatestate  :获取手势的状态

    (2)@property(nonatomic, readonly) UIView*view  :获取接受手势的视图

    (3)@property(nonatomic, getter=isEnabled) BOOL enabled  :手势是否可用

8.取消和延迟触摸

    (1)@property(nonatomic) BOOL cancelsTouchesInView  :取消视图的触摸

    (2)@property(nonatomic) BOOL delaysTouchesBegan  :延迟触摸的开始

    (3)@property(nonatomic) BOOL delaysTouchesEnded  :延迟触摸的结束

9.指定两个手势识别器的依赖

    (1)- (void)requireGestureRecognizerToFail:(UIGestureRecognizer *)otherGestureRecognizer  :只有当别的识别器触发失败的时候才使用该识别

10.设定委托

    (1)@property(nonatomic, weak) id< UIGestureRecognizerDelegate> delegate  :设定指定的委托

11.子类的方法

    (1)- (void)touchesBegan:(NSSet<UITouch *> *)touches
           withEvent:(UIEvent *)event  :触摸屏幕时开始执行这个方法

    (2)- (void)touchesMoved:(NSSet<UITouch *> *)touches
           withEvent:(UIEvent *)event  :触摸移动过程中执行这个方法

    (3)- (void)touchesEnded:(NSSet<UITouch *> *)touches
           withEvent:(UIEvent *)event  :触摸结束的时候执行这个方法

    (4)- (void)touchesCancelled:(NSSet<UITouch *> *)touches
               withEvent:(UIEvent *)event  :当触摸因为意外情况而取消就会执行这个方法

    (5)- (void)reset  :重置手势

    (6)- (void)ignoreTouch:(UITouch *)touch
           forEvent:(UIEvent *)event  :忽略某个事件的手势

    (7)- (BOOL)canBePreventedByGestureRecognizer:(UIGestureRecognizer *)preventingGestureRecognizer  :重载这个方法能够执行UIGestureRecognizerDelegate协议里面的方法gestureRecognizerShouldBegin: and gestureRecognizer:shouldReceiveTouch:.

    (8)- (BOOL)canPreventGestureRecognizer:(UIGestureRecognizer *)preventedGestureRecognizer  :Overridden to indicate that the receiver can prevent the specified gesture recognizer from recognizing its gesture.

    (9)- (BOOL)shouldRequireFailureOfGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer  :重载这个方法来设定接收者不响应指定的手势

    (10)- (BOOL)shouldBeRequiredToFailByGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer  :重载这个方法来指定接收者应该被要求失败通过指定的手势识别器,Overridden to indicate that the receiver should be required to fail by the specified gesture recognizer.

    (11)- (void)ignorePress:(UIPress *)button
           forEvent:(UIPressesEvent *)event  :告诉手势识别器忽视按的事件

    (12)- (void)pressesBegan:(NSSet<UIPress *> *)presses
           withEvent:(UIPressesEvent *)event  :当按钮被按的时候发送事件到接收者

    (13)- (void)pressesChanged:(NSSet<UIPress *> *)presses
             withEvent:(UIPressesEvent *)event  :当按钮的压力变化的时候发送事件到接收者

    (14)- (void)pressesEnded:(NSSet<UIPress *> *)presses
           withEvent:(UIPressesEvent *)event  :当按钮结束按的动作的时候发送事件给接收者

    (15)- (void)pressesCancelled:(NSSet<UIPress *> *)presses
               withEvent:(UIPressesEvent *)event  :当按钮的按动作被取消的时候发送事件到接收者

12.配置不同的手势

    (1)@property(nonatomic, copy) NSArray<NSNumber *> *allowedPressTypes  :一组不同按的类型来区分按钮被按

    (2)@property(nonatomic, copy) NSArray<NSNumber *> *allowedTouchTypes  :一组不同的触摸类型,用来区分不同的touches

13.数据类型

    (1)UIGestureRecognizerState类型

UIGestureRecognizerStatePossible,

UIGestureRecognizerStateBegan,

UIGestureRecognizerStateChanged,

UIGestureRecognizerStateEnded,

UIGestureRecognizerStateCancelled,

UIGestureRecognizerStateFailed,

UIGestureRecognizerStateRecognized = UIGestureRecognizerStateEnded

---恢复内容结束---

时间: 2024-11-07 21:46:54

UIKit框架之UIGestureRecognizer的相关文章

UIKit框架各个类的简介

1.UIAcceleration: 被叫做加速事件的一个UIAcceleration类的实例是用来代表即时的三维加速数据.为了接收重力加速度,要注册一个应用应用程序作为一个共享UIAccelerater对象的委托对象(参考UIAcceleromete类). 2. UIAccelerater: UIAccelerater类可以让你的寄存器接收到从板载硬件上得到的加速相关数据.当设备移动时,它的硬件能够报告沿主线在三维空间中的线性加速度变化.你可以利用这些数据来检测器件的电流方向和该方向的瞬时变化.

iOS UIKit框架

1. 简介: UIKitk框架提供一系列的Class(类)来建立和管理iPhone OS应用程序的用户界面( UI )接口.应用程序对象.事件控制.绘图模型.窗口.视图和用于控制触摸屏等的接口.(PS1: 可以认为是操纵界面的一个API库)(PS2: UIKit框架是用在iOS平台上与之对应的是MAC OS X上的Application Kit,二者是姐妹框架,作用和目的没啥太大区别(我没有说实现目的的过程也一样),表混淆了) 2. 框架的入口: #import <UIKit/UIKit.h>

iOS UIKit 框架 346 篇文档分类整理 - 预告

太阳火神的美丽人生 (http://blog.csdn.net/opengl_es) 本文遵循"署名-非商业用途-保持一致"创作公用协议 转载请保留此句:太阳火神的美丽人生 -  本博客专注于 敏捷开发及移动和物联设备研究:iOS.Android.Html5.Arduino.pcDuino,否则,出自本博客的文章拒绝转载或再转载,谢谢合作. 当前正在进行的是 "iOS Foundation 框架 224 篇相关文档分类整理",量很大,但会根据实际开发中的使用频繁程序

UIKit框架使用总结--看看你掌握了多少

一.经常使用的,基本就是每次项目迭代都需要使用的 UIView.UILabel.UIImage.UIColor.UIFont.UIImageView.UITextField.UIButton. UIScrollView.UITableView.UITableViewCell.UICollectionView.UICollectionViewCell.UITextView. UIViewController 二.偶尔使用,或者说不是每次都要敲出来的 1.功能专用 UIPickerView(数据选择

UIKit框架之UIButton详解

UIKit框架是iPhone应用程序开发中最基本的框架,也是用得最多.最重要的框架,今天要和大家分享的就是UIKit中的UIButton相关知识,一起来看看吧. 1.实例化: 1.1.init方式: 1 UIButton *button = [[UIButton alloc] initWithFrame:rect]; 1.2.类方法方式: 1 UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; 其中按钮类型枚

UIKit框架(2)框架简介

UIKit框架 什么是框架? 简单来说,就是其他攻城狮开发完成的代码,包括库文件.头文件等,这些文件中的API我们可以拿过来使用 UIKit框架是干什么的? 提供创建基于触摸用户界面的类 包括:屏幕上的绘制机制.捕捉事件.管理组织复杂的UI元素 UIKit中最重要的两个类? 1)UIView:所有可以看到的组件/控件/视图的父类 如:UIButton按钮.UILabel标签.UITextField输入框.UIImageView图片视图等 2)UIViewController:所有控制器的父类,负

UIKit框架

在今后的应用程序构建中,会陆续使用各式各样的控件,因此UIKit框架的引入是必不可少的! 一.简介 UIKitk框架提供一系列的Class(类)来建立和管理iPhone OS应用程序的用户界面接口.应用程序对象.事件控制.绘图模型.窗口.视图和用于控制触摸屏等的接口. 二.框架的入口 #import <UIKit/UIKit.h> 三.框架图:

iOS开发概述UIkit动力学,讲述UIKit的Dynamic特性,UIkit动力学是UIkit框架中模拟真实世界的一些特性。

转发:http://my.oschina.net/u/1378445/blog/335014 iOS UIKit动力学 Dynamics UIAttachmentBehavior 实现iMessage风格 目录[-] UIDynamicAnimator UIAttachmentBehavior(吸附) UIPushBehavior(推动) UIGravityBehavior(重力) UICollisionBehavior(碰撞) UISnapBehavior(捕捉) UICollectionVi

cocoa的UIKit框架

在cocoa中有许多框架,其中最基本的也是最常用的就是Foundation框架和UIKit框架, Foudation框架是oc的基础框架,和界面无关. UIKit框架是与界面相关的基础框架.下面是UIKit框架的类组织架构图: 框架类组织架构图: