gpt4 book ai didi

ios - scrollView 底部内容不响应触摸事件

转载 作者:行者123 更新时间:2023-11-29 00:30:17 25 4
gpt4 key购买 nike

我有 ScrollView 。在侧 ScrollView 中,我有一个带有尾随、前导、顶部和底部约束以及相等高度的容器 View 。我正在动态添加 View 。我在

中更新了内容大小

viewWillLayoutSubviews as follows.

override func viewWillLayoutSubviews() {
self.scrollView.contentSize = CGSize(width: self.contentView.frame.width, height: self.contentView.frame.height)
self.contentView.frame = CGRect(x: self.contentView.frame.minX, y: self.contentView.frame.minY, width: self.contentView.frame.width, height: 2500) // code to update the contentView's frame where 2500 is a dummy value
self.contentView.clipsToBounds = true
}

现在我可以滚动到容器 View 的最后一个 subview 。但问题是最后 3 个 subview 没有响应触摸事件。

我尝试了以下方法但失败了。

  • 还更新了 containterView 的框架
  • 还更新了 ScrollView 的框架

没用。请帮助我。

最佳答案

 func updateFrame() {
self.scrollView.contentSize = CGSize(width: self.contentView.frame.width, height: self.contentView.frame.height)
self.contentView.translatesAutoresizingMaskIntoConstraints = false
self.contentView.frame = CGRect(x: self.contentView.frame.minX, y: self.contentView.frame.minY, width: self.contentView.frame.width, height: 2500) // code to update the contentView's frame where 2500 is a dummy value
self.contentView.clipsToBounds = true
}

试试这个。我假设您的 ScrollView 比内容 View 大

关于ios - scrollView 底部内容不响应触摸事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42061767/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com