UI_手势

轻拍手势

    // 创建一个轻拍手势,同时绑定了事件
    UITapGestureRecognizer *aTapGR = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapGRAction:)];

    // 设置轻拍次数
    aTapGR.numberOfTapsRequired = 1;

    // 设置手指触摸的个数
    aTapGR.numberOfTouchesRequired = 1; // 模拟器按住 alt 可以两个手指触摸

    // 添加手势
    [self.rootView addGestureRecognizer:aTapGR];
    [aTapGR release];

#pragma mark - 轻拍手势
- (void)tapGRAction:(UITapGestureRecognizer *)sender
{
    [self.rootView.aTextField resignFirstResponder];
    // 下面也可以,让rootVIew 停止编辑
    // [self.rootView endEditing:YES];
}

长按手势

    UILongPressGestureRecognizer *longPressGR = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressGRAction:)];
    [self.rootView addGestureRecognizer:longPressGR];
    [longPressGR release];

#pragma mark - 长按手势
- (void)longPressGRAction:(UILongPressGestureRecognizer *)sender
{
    // 判断,否则会变两次
    if (sender.state == UIGestureRecognizerStateBegan) {
        CGFloat red = arc4random() % 256 / 255.0;
        CGFloat green = arc4random() % 256 / 255.0;
        CGFloat blue = arc4random() % 256 / 255.0;
        self.rootView.backgroundColor = [UIColor colorWithRed:red green:green blue:blue alpha:1];

    }
}

旋转手势

    UIRotationGestureRecognizer *rotationGR = [[UIRotationGestureRecognizer alloc] initWithTarget:self action:@selector(rotationGRAction:)];
    // 手势要添加到图片上
    [self.rootView.opeImageView addGestureRecognizer:rotationGR];
    [rotationGR release];

#pragma mark - 旋转手势
- (void)rotationGRAction:(UIRotationGestureRecognizer *)sender
{
    // 操作对象和旋转角度
    self.rootView.opeImageView.transform = CGAffineTransformRotate(self.rootView.opeImageView.transform, sender.rotation);
    // 旋转后角度为0
    sender.rotation = 0;

    // 可以代替上面两行
    // self.rootView.opeImageView.transform = CGAffineTransformMakeRotation(sender.rotation);

}

捏合手势

    UIPinchGestureRecognizer *pinchGR = [[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(pinchGRAction:)];
    [self.rootView.opeImageView addGestureRecognizer:pinchGR];
    [pinchGR release];

#pragma mark - 捏合手势
- (void)pinchGRAction:(UIPinchGestureRecognizer *)sender
{
    self.rootView.opeImageView.transform = CGAffineTransformScale(self.rootView.opeImageView.transform, sender.scale, sender.scale);
    // 缩放完成后缩放比例重新置为1
    sender.scale = 1;

}

平移手势

    UIPanGestureRecognizer *panGR = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panGRAction:)];
    [self.rootView.opeImageView addGestureRecognizer:panGR];
    [panGR release];

#pragma mark - 平移手势
- (void)panGRAction:(UIPanGestureRecognizer *)sender
{
    CGPoint point = [sender translationInView:sender.view];
    self.rootView.opeImageView.transform = CGAffineTransformTranslate(self.rootView.opeImageView.transform, point.x, point.y);

    // 平移之后让手势相对于所在的 view 重新置0
    [sender setTranslation:CGPointZero inView:sender.view];

}

轻扫手势

    UISwipeGestureRecognizer *swipeGR = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeGRAction:)];
    [self.rootView addGestureRecognizer:swipeGR];
    [swipeGR release];

    // 一个手势只能一个方向轻扫,多个方向写多个手势
    swipeGR.direction = UISwipeGestureRecognizerDirectionRight;
    /**
     typedef NS_OPTIONS(NSUInteger, UISwipeGestureRecognizerDirection) {
     UISwipeGestureRecognizerDirectionRight = 1 << 0,
     UISwipeGestureRecognizerDirectionLeft  = 1 << 1,
     UISwipeGestureRecognizerDirectionUp    = 1 << 2,
     UISwipeGestureRecognizerDirectionDown  = 1 << 3
     };
     */

#pragma mark - 清扫手势
- (void)swipeGRAction:(UISwipeGestureRecognizer *)sender
{
    NSLog(@"清扫手势");
}

屏幕边缘轻扫

    UIScreenEdgePanGestureRecognizer *screenEdgePanGR = [[UIScreenEdgePanGestureRecognizer alloc] initWithTarget:self action:@selector(screenEdgePanGRAction:)];
    [self.rootView addGestureRecognizer:screenEdgePanGR];
    [screenEdgePanGR release];

#pragma mark - 屏幕边缘清扫手势
- (void)screenEdgePanGRAction:(UIScreenEdgePanGestureRecognizer *)sender
{
    NSLog(@"屏幕边缘清扫手势");
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-12-12 13:44:22

UI_手势的相关文章

vue手势解决方案

1.需求 因为项目中要做一个可以移动.旋转和放缩具有合成图片的功能,例如: 剑可以随意移动,然后把位移.旋转角度和放缩值传给后台进行合成. 2.解决方案 网上搜到手势插件AlloyFinger,https://github.com/AlloyTeam/AlloyFinger 首先安装AlloyFinger:npm install alloyfinger 然后在Vue文件里面引用:import AlloyFinger from 'alloyfinger' 使用方法: mounted() { thi

手势事件

1.基本的手势事件主要有如下三个方法: dispatchTouchEvent : 判断该事件是否需要下发.返回true表示需要下发给下级视图,返回false表示不需要下发(交给自身的onTouchEvent处理).但是否最终下发,还需根据onInterceptTouchEvent的拦截结果. onInterceptTouchEvent : 判断当前容器是否需要拦截该事件.返回true表示予以拦截(交给自身的onTouchEvent处理).不放给下级视图,返回false表示不拦截该事件. onTo

【Bootstrap】3.优化站点资源、完成响应式图片、让传送带支持手势

A.优化站点资源 速度很重要.用户很关心.我们的站点必须加载够快,否则用户就会走人.SEO 也很重要.我们的站点必须加载够快,否者搜索排名就会下降. 明白了这样,我们就来清点一下 [Bootstrap]2.作品展示站点 中的资源.特别的,来看一看我们能控制的.影响页面速度的重要因素 —— 文件大小,包括图片.CSS和 JavaScript 文件.只要简单几步,我们就可以给这些文件“瘦身”,缩短加载时间. A.1 优化图片 这些图片都通过 Photoshop 的 “保存为 Web 格式” 进行了一

Android官方开发文档Training系列课程中文版:手势处理之滚动动画及Scroller

原文地址:http://android.xsoftlab.net/training/gestures/scroll.html 在Android中,滑动经常由ScrollView类来实现.任何超出容器边界的布局都应该将自己内嵌在ScrollView中,以便提供可滚动的视图效果.自定义滚动只有在特定的场景下才会被用到.这节课将会描述这样一种场景:使用scroller显示一种可滚动的效果. 你可以使用Scroller或者OverScroller来收集一些滑动动画所需要的数据.这两个类很相似,但是Ove

九点(九宫格)式手势解锁自定义view

周末闲着没事,写了个手势解锁的view,实现起来也蛮快的,半天多一点时间就完事.把源码和资源贴出来,给大家分享,希望对大家有用. 效果,就跟手机上的九点手势解锁一样,上个图吧: 过程嘛感觉确实没啥好讲的了,涉及的知识以前的博客都说过了,无非就是canva,paint,touch事件这些,画画圆圈画画线条,剩下的就是细节处理逻辑了.都在代码里,所以这里就主要是贴资源吧. 这个自定义view就一个类,源码如下: package com.cc.library.view; import android.

UIKit框架(16)手势识别器

UIGestureRecognizer 利用手势识别器,能够轻松识别用户在某个view上面做一些常见的手势 UIGestureRecognizer是一个抽象类,定义了所有手势的基本行为,使用它的子类才能处理具体的手势 UITapGestureRecognizer                敲击 UIPinchGestureRecognizer            捏合手势 UIPanGestureRecognizer               拖拽 UISwipeGestureRecog

2015-10-31 iOS 中的手势

UIkit框架中绝大多数的控件都是继承自,UIResponder类,UIResponder 类有强大的处理触摸事件的能力.假如一个UIview 收到一个触摸事件,那么这个触摸事件就会去进行寻找相应的响应事件,如果在该UIview 中找不到,就寻找UIView的对象去处理,如果UIView对象没有权利处理,就往当前的上一层UIViewController去寻找,如果找不到就再寻找 UIViewController 的对象去处理,如果这个对象仍然不能处理,就再往上层 UIWindow 对象去处理,如

iOS开发——仿Clear纯手势操作的UITableView

前言 在Clear应用中,用户无需任何按钮,纯靠不同的手势就可以完成对ToDoItem的删除.完成.添加.移动.具体来说,功能上有左划删除,右划完成,点击编辑,下拉添加.捏合添加.长按移动.这里将这些功能实现并记录. 左划删除与右划完成 所谓的左右滑动,就是自定义一个cell然后在上面添加滑动手势.在处理方法中计算偏移量,如果滑动距离超过cell宽度一半,就删除它,或者是为文本添加删除线等来完成它:如果没有超过一半,那么就用动画把cell归位. 效果图如下: 关键代码如下: - (void)ha

iOS小米遥控器的手势监听及UI实现

这篇文章通过实例实现了一个类似小米手势遥控器的功能页面. 效果图如下所示: 触摸事件的响应通过对系统的触摸实践监听来进行. 通过一个数组来对点的集合进行缓存和分析. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { if (!self.allowsInteraction) return; UITouch *touch = [touches anyObject]; CGPoint start = [touch lo