场景+需求
场景:评论视图包含主评论(mainTableView)和子评论(subTableView); 需求:长按主评论或者子评论进行内容复制,同时主、子评论的cell的点击事件不能被拦截
实现
主评论(mainTableView)
UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc]
initWithTarget:self action:@selector(longPressGestureRecognized:)];
[_mainTableview addGestureRecognizer:longPress];
-(void)longPressGestureRecognized:(UILongPressGestureRecognizer*)longPressGesture {
if (longPressGesture.state == UIGestureRecognizerStateBegan) {
//手势开始
CGPoint point = [longPressGesture locationInView:_mainTableview];
//可以获取我们在哪个cell上长按
NSIndexPath *currentIndexPath = [_mainTableview indexPathForRowAtPoint:point];
NSLog(@"comment0====%@",currentIndexPath);
}
if (longPressGesture.state == UIGestureRecognizerStateEnded) {
//手势结束
CGPoint point = [longPressGesture locationInView:_mainTableview];
//可以获取我们在哪个cell上长按
NSIndexPath *currentIndexPath = [_mainTableview indexPathForRowAtPoint:point];
NSLog(@"comment1====%@",currentIndexPath);
}
}
子评论(subTableView)
UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc]
initWithTarget:self action:@selector(longPressGestureRecognized:)];
[_subTableView addGestureRecognizer:longPress];
-(void)longPressGestureRecognized:(UILongPressGestureRecognizer*)longPressGesture {
if (longPressGesture.state == UIGestureRecognizerStateBegan) {
//手势开始
CGPoint point = [longPressGesture locationInView:_subTableView];
//可以获取我们在哪个cell上长按
NSIndexPath *currentIndexPath = [_subTableView indexPathForRowAtPoint:point];
NSLog(@"detail0====%@",currentIndexPath);
}
if (longPressGesture.state == UIGestureRecognizerStateEnded) {
//手势结束
CGPoint point = [longPressGesture locationInView:_subTableView];
// 可以获取我们在哪个cell上长按
NSIndexPath *currentIndexPath = [_subTableView indexPathForRowAtPoint:point];
NSLog(@"detail1====%@",currentIndexPath);
}
}
总结
不能将手势添加到Cell上,因为父类、与子类同时存在手势的时候只有父类响应,另外tableView的didsel方法也会失去响应
FEATURED TAGS
iOS
OC
C
Xcode
MIMEType
屏幕旋转
Mac
工具
SQLite3
重命名
证书+内购
像素
pch
支付协议税务
APP转让
审核
银行卡格式化
git
描述文件
命令行
沙盒日志
i386
x86_64
控制台log
xcode10&iOS12
正则
textfield
输入限制
Pod
真机支持
封面尺寸
SDWebImage
Ruby
RVM
渐变色
jekyll
水印
富文本
标签
M3U8
动、静态库
异步上传
Url编码解码
AlertController
保活
pod报错
特定UI横竖屏
Launch版本号
ijkplayer
适配
手势
截图
网络和信号
礼物缓存
手绘礼物
UIPickerView
文件权限
键盘和菜单
耗时卡顿
国际化
Paypal
AWSS3
npm、Node
控制台
warning
扩展
防盗链
动画
分析
CallKit
侧滑
重置根控制器
播放器
裁剪
日志
bugly
uniapp
Swift
文字翻转
跨域
WebClip
网络请求
地图导航
ZSH
SPM
Vapor
导航
验证码
杀进程
Ubuntu
Android
JWT
vue
html-js
style-class
ssh
PHP
jks
css
Runtime
tree
uniCloud
圆角
总结