将tapRecognizer添加到UIScrollView

时间:2011-02-25 20:39:22

标签: iphone

是否可以添加tapRecognizer来检测UIScrollView上的单击,以便它不会干扰分页和滚动?

如果是这样,这个怎么设置?

1 个答案:

答案 0 :(得分:3)

是的,它必须做这样的事情:

UITapGestureRecognizer* tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
[self addGestureRecognizer:tap];
[tap release];