tableview长按响应的实现
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tableview长按响应的实现相关的知识,希望对你有一定的参考价值。
1、添加手势识别事件、按住时长、处理函数
UILongPressGestureRecognizer * longPressGr = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressToDo:)];
longPressGr.minimumPressDuration = 0.8;
[self.tableView addGestureRecognizer:longPressGr];
[longPressGr release];
2、实现UIAlertView 的代理方法(如果需要弹出提示)
- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex
3、实现处理函数
longPressToDo:
通过点击的坐标来判断点击了哪一个cell
if(gesture.state == UIGestureRecognizerStateBegan)
{
CGPoint point = [gesture locationInView:self.tableView];
NSIndexPath * indexPath = [self.tableView indexPathForRowAtPoint:point];
if(indexPath == nil) return ;
}
以上是关于tableview长按响应的实现的主要内容,如果未能解决你的问题,请参考以下文章
ios 实现在tableViewCell上面添加长按手势 删除该条cell以及列表后台数据等