我有一个自定义UITableViewCell,其中包含一个覆盖整个单元格的UIScrollView。我希望能够使用滚动视图滚动单元格中的标签(这是有效的),但滚动视图似乎是“窃取”单元格的tap事件。所以我想知道:
如何将触摸事件从UIScrollView传递给其父UITableViewCell?
答案 0 :(得分:0)
在UISCrollViewController中,您是否尝试将touchesEnded传递给super,假设滚动没有进行?
- (void)touchesEnded:(NSSet *)aTouches withEvent:(UIEvent *)anEvent
{
if(![self isDragging])
{
[super touchesEnded:aTouches withEvent:anEvent];
}
}