gpt4 book ai didi

iphone - 自动布局困惑 : Constraints for ScrollView with WebView and Header/Footer Views

转载 作者:可可西里 更新时间:2023-11-01 04:44:13 25 4
gpt4 key购买 nike

为了说明我的问题,我创建了下图:

Now in 3D

红色方 block 周围的黑色边框应该是 iPhone 屏幕。在里面,我们有一个红色的 UIScrollView,它比屏幕高。事实上,它与 UIWebView 一样高,上面显示为黄色。 UIWebViewUIScrollView 的 subview ,禁用滚动。此外,我们有两个蓝色 View ,我喜欢称之为页眉和页脚 View 。它们也是 UIScrollView 的 subview ,但在可滚动边界之外。

我现在的问题是:如何为此配置自动布局约束?

我已经设法使用 code from this answer 检索了 UIWebView 高度然后相应地更新 UIScrollViewcontentSize。然而,这并不是一个好的解决方案,因为 UIWebView 的宽度不会对 UIScrollView 的宽度变化使用react。

我还设法像这样设置标题 View 的布局约束(使用 Masonary ):

[headerView makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(@-100);
make.left.equalTo(@0);
make.width.equalTo(scrollView.width);
make.height.equalTo(@100);
}];

但是,像这样设置页脚 View 的布局不起作用:

[changeView makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(scrollView.bottom)
make.left.equalTo(@0);
make.width.equalTo(scrollView.width);
make.height.equalTo(@100);
}];

我觉得这不会太难,希望能得到更熟悉自动布局的人的帮助。谢谢!

最佳答案

在视觉格式语言 (VFL) 中,约束是:

[scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-(-100)-[headerView(100)]" options:0 metrics:nil views:views]];
[scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[footerView(100)]-(-100)-|" options:0 metrics:nil views:views]];
[scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[headerView]|" options:0 metrics:nil views:views]];
[scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[footerView]|" options:0 metrics:nil views:views]];

或者,如果您要用 constraintWithItem 调用替换 @"V:[footerView(100)]-(-100)-|" VFL,它会是:

[footerView addConstraint:[NSLayoutConstraint constraintWithItem:footerView
attribute:NSLayoutAttributeHeight
relatedBy:NSLayoutRelationEqual
toItem:nil
attribute:NSLayoutAttributeNotAnAttribute
multiplier:1.0
constant:100.0]];

[scrollView addConstraint:[NSLayoutConstraint constraintWithItem:footerView
attribute:NSLayoutAttributeBottom
relatedBy:NSLayoutRelationEqual
toItem:scrollView
attribute:NSLayoutAttributeBottom
multiplier:1.0
constant:100.0]];

我不能说为什么您的 Masonary 实现不起作用,因为我不熟悉它。但我会尝试以上方法之一并确保。

老实说,你描述了设置web View 的高度,我想知道你是设置了web View 的高度约束(好)还是只是调整了frame.size.height的值(坏的)。但是您还没有分享如何设置 WebView 高度的细节,所以我无法进一步评论。

无论如何,如果您遇到基于约束的问题,有两种有用的诊断技术。如果它仍然不工作,我会在模拟器上运行应用程序,暂停它,然后在 (lldb) 提示符下输入:

po [[UIWindow keyWindow] _autolayoutTrace]

您应该会看到如下内容:

(lldb) po [[UIWindow keyWindow] _autolayoutTrace]
$0 = 0x0715d6e0
*<UIWindow:0x758aae0>
| *<UIView:0x71630f0>
| | *<UIScrollView:0x716a370>
| | | *<HeaderView:0x716b860>
| | | *<FooterView:0x716bbb0>
| | | *<UIWebView:0x716c2b0>
| | | | <_UIWebViewScrollView:0x7176a30>
| | | | | ...
| | | | | <UIWebBrowserView:0x797fe00>
| | | <UIImageView:0x75e1360>
| | | <UIImageView:0x75e2a60>

确保那里没有任何警告。如果一切正常,那么我将在 (lldb) 提示符下使用以下命令:

po [[UIWindow keyWindow] recursiveDescription]

您应该会看到如下内容:

(lldb) po [[UIWindow keyWindow] recursiveDescription]
$1 = 0x071c0ea0 <UIWindow: 0x758aae0; frame = (0 0; 320 568); autoresize = W+H; layer = <UIWindowLayer: 0x758b770>>
| <UIView: 0x71630f0; frame = (0 20; 320 548); autoresize = RM+BM; layer = <CALayer: 0x7163180>>
| | <UIScrollView: 0x716a370; frame = (0 0; 320 548); clipsToBounds = YES; gestureRecognizers = <NSArray: 0x716b1d0>; layer = <CALayer: 0x716ad20>; contentOffset: {0, 16}>
| | | <HeaderView: 0x716b860; frame = (0 -100; 320 100); layer = <CALayer: 0x716b910>>
| | | <FooterView: 0x716bbb0; frame = (0 564; 320 100); layer = <CALayer: 0x716bee0>>
| | | <UIWebView: 0x716c2b0; frame = (0 8; 320 548); layer = <CALayer: 0x716c360>>
| | | | <_UIWebViewScrollView: 0x7176a30; frame = (0 0; 320 548); clipsToBounds = YES; autoresize = H; gestureRecognizers = <NSArray: 0x7177000>; layer = <CALayer: 0x7176c80>; contentOffset: {0, 0}>
| | | | | ...
| | | | | <UIWebBrowserView: 0x797fe00; frame = (0 0; 1024 1754); gestureRecognizers = <NSArray: 0x7173260>; layer = <UIWebLayer: 0x716d7f0>>
| | | | | | ...
| | | <UIImageView: 0x75e1360; frame = (1 540; 318 7); alpha = 0; opaque = NO; autoresize = TM; userInteractionEnabled = NO; layer = <CALayer: 0x75e2980>>
| | | <UIImageView: 0x75e2a60; frame = (312 32.5; 7 530.5); alpha = 0; opaque = NO; autoresize = LM; userInteractionEnabled = NO; layer = <CALayer: 0x75e2b00>>

查看各种生成的 frame 值,看看发生了什么。这可以帮助您诊断解决方案。您没有为我们提供足够的信息来诊断问题(您告诉我们页脚不起作用,但您没有告诉我们您的约束最终将其放置在哪里)。如果您执行上述命令,您可以准确地确定您的约束最终放置页脚的位置,然后找出如何从那里解决问题。

请注意,您会看到我的 headerViewfooterView 在这两个列表中显示为 HeaderViewFooterView 类而不是 UIView。在诊断约束问题时,如果关键 View 有自己的类,这将很有用,因此我定义了没有实现的 UIView 子类,但如果我将这些独特的子类用于我的页眉和页脚 View ,它就大有帮助了更容易解释上述 (lldb) 命令的结果。

@interface HeaderView : UIView
@end
@implementation HeaderView
@end

@interface FooterView : UIView
@end
@implementation FooterView
@end

关于iphone - 自动布局困惑 : Constraints for ScrollView with WebView and Header/Footer Views,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18489633/

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