大家好,又见面了,我是你们的朋友全栈君。
今天做了个测试,看看tableView如果实现了touchesBegan方法和实现了didSelectRowAtIndexPath点击的时候会去实现哪一个?
答案是touchesBegan。
先附上测试的函数
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
NSLog(@"------");
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"llllll");
}
红色的代表tableView,蓝色的代表cell,我不管是点击cell还是点击tableView,监听到的方法都是touchesBegan。
下面是输出结果,输出的都是touchesBegan中的方法
这个是视图
而当tableView没有实现touchesBegan,当我们点击cell的时候是有反应的
以下是输出结果
视图如下所示
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/164205.html原文链接:https://javaforall.cn