给ScrollView添加touches点击事件

来源:互联网 发布:笔记本电脑录视频软件 编辑:程序博客网 时间:2024/06/03 21:35

给ScrollView添加touches点击事件

正常情况下view上的touches点击事件是不能在scrollView上触发的,如果要实现,可以给scrollView添加点击手势,然后捕获点击坐标点

UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapAction:)];- (void)tapAction:(UITapGestureRecognizer *)sender{CGPoint point = [sender locationInView:sender.view];}
0 0
原创粉丝点击