iOS嵌套的UIScrollViews没有响应

Posted

技术标签:

【中文标题】iOS嵌套的UIScrollViews没有响应【英文标题】:iOS Nested UIScrollViews Not Responding 【发布时间】:2013-07-22 18:29:32 【问题描述】:

我一直在寻找如何嵌套 UIScrollViews。 似乎它应该像使用容器滚动视图的 addSubview: 添加内部滚动视图一样简单。我的一切都在视觉上正确显示,但内部滚动视图的功能不存在,尽管为它们提供了适当的框架和内容大小。 我下面的代码显示了我到目前为止所拥有的。只有外部滚动视图滚动。我想要它,以便外部滚动视图控制从左到右滚动,每个内部滚动视图控制其相关页面内容的垂直滚动。

self.containerScroll = [[UIScrollView alloc]init];
self.containerScroll.frame = CGRectMake(0,(self.headerView.frame.size.height + self.pageControl.frame.size.height),screenWidth, (screenHeight - (self.headerView.frame.size.height + self.pageControl.frame.size.height)));
self.containerScroll.backgroundColor = [UIColor clearColor];
self.containerScroll.alpha = 1;
self.containerScroll.pagingEnabled = YES;
self.containerScroll.contentSize = CGSizeMake(self.containerScroll.bounds.size.width*3,1);
self.containerScroll.bounces = NO;
self.containerScroll.delegate = self;
[self.view addSubview:self.containerScroll];

self.page1Scroll = [[UIScrollView alloc]init];
self.page1Scroll.frame = CGRectMake(0,0,self.containerScroll.bounds.size.width,self.containerScroll.bounds.size.height);
self.page1Scroll.backgroundColor = [UIColor redColor];
self.page1Scroll.alpha = 1;
[self.page1Scroll addSubview:self.feedPageVC.view];
self.page1Scroll.contentSize = CGSizeMake(320,500);
self.page1Scroll.delegate = self;
[self.containerScroll addSubview:self.page1Scroll];

self.page2Scroll = [[UIScrollView alloc]init];
self.page2Scroll.frame = CGRectMake(self.containerScroll.bounds.size.width,0,self.containerScroll.bounds.size.width,self.containerScroll.bounds.size.height);
self.page2Scroll.backgroundColor = [UIColor greenColor];
self.page2Scroll.delegate = self;
[self.containerScroll addSubview:self.page2Scroll];

self.page3Scroll = [[UIScrollView alloc]init];
self.page3Scroll.frame = CGRectMake(self.containerScroll.bounds.size.width*2,0,self.containerScroll.bounds.size.width,self.containerScroll.bounds.size.height);
self.page3Scroll.backgroundColor = [UIColor blueColor];
[self.page3Scroll addSubview:self.detailsPageVC.view];
self.page3Scroll.contentSize = CGSizeMake(320,500);
self.page3Scroll.delegate = self;
[self.containerScroll addSubview:self.page3Scroll];

【问题讨论】:

【参考方案1】:
self.containerScroll.contentSize = CGSizeMake(self.containerScroll.bounds.size.width*3,1); 

您的内容的高度似乎设置为 1。如果子项大于其父项,它将无法正常工作(按钮的工作方式相同)。

另外,请确保您知道您在委托方法中处理的是哪个滚动视图。所有的滚动视图都将以相同的方法处理,这可能会给您带来问题。

【讨论】:

我尝试将容器滚动视图的内容大小设置为 0、1、== subscroll、subscroll。更改内容大小并没有什么不同。子滚动视图仍然根本不滚动。 容器的内容大小应该是所有子视图的宽度和子视图的可见高度。子视图的内容大小应该是容器的宽度(不是内容宽度)和它们的内容的高度。如果内容大小等于实际大小,则滚动视图不会滚动。因此,如果您的子视图的高度大于容器的高度,或者您的子视图的高度等于它的内容高度,则它不会滚动。 我发现了问题。添加到子滚动视图的页面使用自动布局。将这样的视图添加到滚动视图会导致滚动视图尝试根据添加的视图的大小来计算其内容大小。因为我在手动定义内容大小之后添加了子视图,所以这个手动定义被覆盖了。

以上是关于iOS嵌套的UIScrollViews没有响应的主要内容,如果未能解决你的问题,请参考以下文章

滚动发生时嵌套 UIScrollViews 并获取信息

UIButton 没有响应嵌套在另一个 UIScrollView 中的 UIScrollView 中的触摸

具有水平滚动的嵌套 UIScrollViews

嵌套的 uiscrollviews 和自定义处理事件路由

处理嵌套 UIScrollViews 中的冲突手势

处理滚动嵌套 UIScrollViews 在同一方向滚动