我有一个UIButton容器实现:
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
我的容器有子容器,其中一个包含UIScrollView
。
但我的卷轴坏了。
如何在不删除touchesEnded
方法的情况下处理我的滚动?
答案 0 :(得分:0)
您可以尝试实现以下委托方法: -
- (void)scrollViewDidScroll:(UIScrollView *)sender{
//executes when you scroll the scrollView
}
在此方法中,您可以设置标志,然后在touchesEnded
方法中检查相同的标志,以避免内部编写的代码。