0

我实现了一个 UIScrollview 并在里面添加了很多 UIButtons。但是现在滚动视图中只有一点空间可以滚动。如果我尝试在 UIButton 上滚动滚动视图,滚动视图将不会移动。原因是 UIButtons 捕获了滚动视图的必要事件。

有人可以帮我解决这个问题吗?

4

1 回答 1

1

你需要canCancelContentTouches在你的UIScrollView. 这使UIScrollView该类允许在其子视图中进行触摸。

[myScrollview setCanCancelContentTouches:NO];
于 2012-05-05T20:11:29.743 回答