gpt4 book ai didi

ios - 基于 subview 的 AutoLayout 高度

转载 作者:行者123 更新时间:2023-11-29 03:23:02 25 4
gpt4 key购买 nike

我尝试了很多解决方案,但无法让 UIScrollView 通过它的 subview 调整大小。

错误:

(
"<NSLayoutConstraint:0x16e71240 V:[RouteView:0x16d76fd0]-(10)-[RouteView:0x16e6fbb0]>",
"<NSLayoutConstraint:0x16e71270 V:[RouteView:0x16e6fbb0(150)]>",
"<NSLayoutConstraint:0x16d78710 V:[RouteView:0x16e6fbb0]-(10)-[RouteView:0x16e702c0]>",
"<NSLayoutConstraint:0x16e71190 V:[RouteView:0x16e702c0(150)]>",
"<NSLayoutConstraint:0x16d78810 V:[RouteView:0x16e702c0]-(10)-[RouteView:0x16e70700]>",
"<NSLayoutConstraint:0x16e713e0 V:[RouteView:0x16e70700(150)]>",
"<NSLayoutConstraint:0x16d78900 V:[RouteView:0x16e70700]-(0)-| (Names: '|':UIView:0x16e6da80 )>",
"<NSLayoutConstraint:0x16e71030 V:[UIView:0x16e6da80]-(10)-[RouteView:0x16d76fd0]>"
)

Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x16d78810 V:[RouteView:0x16e702c0]-(10)-[RouteView:0x16e70700]>

我的层次结构:

Class UIView contains
--UIScrollView
--mainViewOfScroller
----10-----------10
----|------------|
----UIView-10-UIView
----|------------|
----10-----------10
----|------------|
----UIView-10-UIView
………

我做了什么:

1。对于 scroller(UIScrollView) 的所有 subview ,我设置了 translatesAutoresizingMaskIntoConstraints=NO

2。通过自身的宽度和高度将滚动条高度设置为最大值(自身是类 UIView,它是主 UIView)

[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[scroller]|" options:0 metrics: 0 views:views]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[scroller]|" options:0 metrics: 0 views:views]];

3。将 mainViewOfScroller 按宽度设置为最大值(而不是按高度调整大小)

[scroller addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|     [mainViewOfScroller(==scroller)]|" options:0 metrics:0 views:views]];

4。然后我想将 mainViewOfScroller 的底部固定到 mainViewOfScroller.subviews.lastObject 的底部

[scroller addConstraint:[NSLayoutConstraint constraintWithItem:mainViewOfScroller attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:mainViewOfScroller.subviews.lastObject attribute:NSLayoutAttributeBottom multiplier:1.0 constant:0]];

最佳答案

当像这样在 ScrollView 中使用自动布局时,您需要对其进行设置,以便其中的每个 View 都展开其父 View 。由于 contentSize, ScrollView 的工作方式略有不同。这是之前在苹果开发者论坛上提出的,我做了一个示例项目来演示所使用的约束。它使用 Storyboard,但我认为它可以帮助您。

https://github.com/ketzusaka/ScrollingWithConstraints

这里的目标是让一级 subview 能够展开 ScrollView 。例如,如果您的 ScrollView 中有两个 subview ,您希望顶部的 subview 对其父 View 的左侧、顶部和右侧有约束。底部的应该对其父 View 的左侧、底部和右侧有约束。然后它们应该相互关联,以便它们“堆叠”在彼此之上。最后,您需要确保它们中的每一个都具有一定的大小以使其扩展,可能是固有的内容大小或更多限制。我不会让任何 subview 说它们的宽度与 ScrollView 有关;仅将它们固定到边缘并让 subview 驱动 ScrollView 的大小。

苹果在这里也有一份技术文档:

https://developer.apple.com/library/ios/technotes/tn2154/_index.html

最后,这是苹果开发者论坛的帖子:

https://devforums.apple.com/message/917077#917077

祝你好运!

关于ios - 基于 subview 的 AutoLayout 高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20841932/

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