touchesEnded打破了UIScrollView

时间:2014-11-29 08:43:39

标签: ios objective-c uiscrollview uikit

我有一个UIButton容器实现:

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event

我的容器有子容器,其中一个包含UIScrollView

但我的卷轴坏了。

如何在不删除touchesEnded方法的情况下处理我的滚动?

1 个答案:

答案 0 :(得分:0)

您可以尝试实现以下委托方法: -

- (void)scrollViewDidScroll:(UIScrollView *)sender{
  //executes when you scroll the scrollView
}

在此方法中,您可以设置标志,然后在touchesEnded方法中检查相同的标志,以避免内部编写的代码。