zoukankan      html  css  js  c++  java
  • [IOS]自定义长触屏事件

    写一个Demo来自定义一个长触屏事件,自定义长按手势。

    实现步骤:

    1.创建一个自定义手势类,命名为LongPressGestureRecognizer,在创建的时候继承UIGestureRecognizer

    LongPressGestuRecognizer.h:

    #import <UIKit/UIKit.h>
    
    @interface LongPressGestureRecognizer : UIGestureRecognizer
    
    @end

    LongPressGestuRecognizer.m:


    #import "LongPressGestureRecognizer.h"
    #import <UIKit/UIGestureRecognizerSubclass.h>
    #import <time.h>
    
    NSInteger timer1;
    NSInteger timer2;
    @implementation LongPressGestureRecognizer
    
    
    -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    {
        [super touchesBegan:touches withEvent:event];
        NSDate *nowDate = [NSDate date];
        NSDateFormatter *dateformatter = [[NSDateFormatter alloc] init];
        [dateformatter setDateFormat:@"ss"];
        
        timer1 = [[dateformatter stringFromDate:nowDate] integerValue];
        [dateformatter release];
        NSLog(@"%d",timer1);
    }
    
    -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
    {
        [super touchesEnded:touches withEvent:event];
        NSDate *nowDate = [NSDate date];
        NSDateFormatter *dateformatter = [[NSDateFormatter alloc] init];
        [dateformatter setDateFormat:@"ss"];
        
        [dateformatter release];
        NSLog(@"%d",timer1);
        
        if ((timer2 -timer1) >= 2)
        {
             self.state = UIGestureRecognizerStateEnded;
        }
        
    }
    
    @end

    2.修改主ViewController

    ViewController.h:

    #import <UIKit/UIKit.h>
    
    @interface DXWViewController : UIViewController<UIGestureRecognizerDelegate>
    
    @end

    ViewController.m:

    #import "DXWViewController.h"
    
    #import "LongPressGestureRecognizer.h"
    
    @interface DXWViewController ()
    
    @end
    
    @implementation DXWViewController
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        
        
        LongPressGestureRecognizer * longPress = [[LongPressGestureRecognizer alloc] initWithTarget:self action:@selector(LongPress:)];
        [self.view addGestureRecognizer:longPress];
    }
    
    -(void)LongPress:(LongPressGestureRecognizer *)my
    {
        NSLog(@"OK");
    }
    
    @end

    3.ViewController中的触屏事件touchesBegan和自定义手势中的touchesBegan区别:                                              

    ViewController中的touchesBegan是针对整个View而言的,而自定义中的手势是要绑定到某个特定的view,只针对这个view才相应的手势事件



  • 相关阅读:
    各项硬件使用剖析(一)---让你一眼就能区分瓶颈是Memory、processor ORdisk!
    基本算术运算符
    网页计算器 && 简易网页时钟 && 倒计时时钟
    页面加载后累加,自加1&&判断数字是否为两位数
    累加按钮,自加1&&输入两个数字,比较大小
    用typeof查看数据类型&&用parseInt解析数字,并求和
    鼠标移过,改变图片路径
    单一按钮显示/隐藏&&提示框效果
    简易选项卡&&简易JS年历
    函数传参,改变Div任意属性的值&&图片列表:鼠标移入/移出改变图片透明度
  • 原文地址:https://www.cnblogs.com/suncoolcat/p/3290119.html
Copyright © 2011-2022 走看看