gpt4 book ai didi

ios - 为什么 contentView 在 scrollView 中有一个 y 偏移量

转载 作者:搜寻专家 更新时间:2023-11-01 05:48:48 25 4
gpt4 key购买 nike

我尝试向 scrollView 添加一个 subview(UIView) 以定位 scrollView 中的内容,但我对为什么可滚动内容以某个偏移量开头感到困惑。

我的 View 层次结构和约束如下所示

enter image description here

当我运行应用程序时( ScrollView 有粉红色背景,内容 View 有黑色背景)

enter image description here

在我的 Storyboard中,它看起来像这样

enter image description here

如果这可能有帮助,在我的 viewDidAppear 方法中:

override func viewDidAppear(animated: Bool) {
print(view.frame)
print(baseView.frame)
print(scrollView.frame)
print(scrollView.bounds)
print(scrollView.contentSize)
print(contentView.frame)
}

我得到了

  (0.0, 0.0, 375.0, 618.0)
(0.0, 64.0, 375.0, 554.0)
(0.0, 0.0, 375.0, 554.0)
(0.0, -64.0, 375.0, 554.0) //Why there is a negative y-offset here?
(375.0, 1200.0)
(0.0, 0.0, 375.0, 1200.0)

最佳答案

请注意, ScrollView 位于状态栏和导航栏下方(从 y = 0 开始)。

导航栏的高度 = 44 点状态栏的高度 = 20 点

总计 64 点

通常 ScrollView 从 y = 0 开始,因此 UIViewController 会自动更改其内容插入,以便内容不会隐藏在顶部栏下。

参见 UIViewController.automaticallyAdjustsScrollViewInsets

您应该在 Controller 上将其设置为 false

关于ios - 为什么 contentView 在 scrollView 中有一个 y 偏移量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36507910/

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