zoukankan      html  css  js  c++  java
  • <UI>TableViewCELL长按事件

    //长按事件的手势监听实现方法
    - (void) myHandleTableviewCellLongPressed:(UILongPressGestureRecognizer *)gestureRecognizer {
        if (gestureRecognizer.state == UIGestureRecognizerStateBegan) {
            NSLog(@"UIGestureRecognizerStateBegan");
        }
       if (gestureRecognizer.state == UIGestureRecognizerStateChanged) {
            NSLog(@"UIGestureRecognizerStateChanged");
        }
    
       if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {
            NSLog(@"UIGestureRecognizerStateEnded");
        }
    }
    - (void)viewDidLoad
    {
    
        //------------------------------------------------------------------------------------
        //创建长按手势监听 
        UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] 
                   initWithTarget:self 
                   action:@selector(myHandleTableviewCellLongPressed:)];
        
        //代理
        longPress.delegate = self;
        longPress.minimumPressDuration = 1.0;
        //将长按手势添加到需要实现长按操作的视图里
        [myTableViewControl addGestureRecognizer:longPress];
    
    
        [longPress release];
        //------------------------------------------------------------------------------------
    
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
    }
  • 相关阅读:
    清除浮动的四种方式
    简单的响应式-信息介绍
    Island Mentality
    六、排序-插入排序
    五、快速排序
    有关一些话
    有关学习态度
    无题
    四、链表的学习
    MySQ彻底删除与安装配置
  • 原文地址:https://www.cnblogs.com/robinkey/p/2798332.html
Copyright © 2011-2022 走看看