zoukankan      html  css  js  c++  java
  • UITableViewCell 添加长按手势

    1. UILongPressGestureRecognizer *lpgr = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)];   
    2.     lpgr.minimumPressDuration = 1.0; //seconds  设置响应时间  
    3.     lpgr.delegate = self;     
    4.     [mTableView addGestureRecognizer:lpgr]; //启用长按事件  
    5.     [lpgr release];  
    6.   
    7. -(void)handleLongPress:(UILongPressGestureRecognizer *)gestureRecognizer  //长按响应函数  
    8. {  
    9. CGPoint p = [gestureRecognizer locationInView:mTableView ];  
    10.   
    11. //if(gestureRecognizer.state == UIGestureRecognizerStateBegan)  
    12. //{  
    13. //NSLog(@"UIGestureRecognizerStateBegan");  
    14. //}  
    15. //else if(gestureRecognizer.state == UIGestureRecognizerStateEnded)  
    16. //{  
    17. //NSLog(@"UIGestureRecognizerStateEnded");  
    18. //}  
    19. //else if(gestureRecognizer.state == UIGestureRecognizerStateChanged)  
    20. //{  
    21. //NSLog(@"UIGestureRecognizerStateChanged");  
    22. //}  
    23. //else if(gestureRecognizer.state == UIGestureRecognizerStateCancelled)  
    24. //{  
    25. //NSLog(@"UIGestureRecognizerStateCancelled");  
    26. //}  
    27. //else if(gestureRecognizer.state ==UIGestureRecognizerStateFailed )  
    28. //{  
    29. //NSLog(@"UIGestureRecognizerStateFailed");  
    30. //}  
    31.   
    32.   
    33. NSIndexPath *indexPath = [mTableview indexPathForRowAtPoint:p];//获取响应的长按的indexpath  
    34. if (indexPath == nil)  
    35. NSLog(@"long press on table view but not on a row");  
    36. else  
    37. NSLog(@"long press on table view at row %d", indexPath.row);  
    38.   
    39. }  
  • 相关阅读:
    持续集成(转)
    Java中前台JSP请求Servlet实例(http+Servlet)
    Java中Map集合的四种访问方式(转)
    Python中字符串操作
    Python中的range函数用法
    Python学习资料下载地址(转)
    Linux性能工具介绍
    性能问题定位方法
    录制脚本前需要理解的几个基本概念
    Python 硬件底层基础理论
  • 原文地址:https://www.cnblogs.com/CodingMann/p/4949178.html
Copyright © 2011-2022 走看看