gpt4 book ai didi

ios - 了解 iOS Objective C 中的视觉格式约束

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

我知道如何在 InterfaceBuilder 中设置约束。前导、尾随、顶部、底部、固定宽度等。我找到了一些约束代码,我不知道这段代码试图设置哪个约束,下面的视觉格式约束到底是什么意思?

  NSDictionary *binding = @{@"v" : self.view};
NSDictionary *metrics = @{@"height" : @(self.height)};
[self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[v]|" options:0 metrics:nil views:binding]];
[self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[v(==height)]|" options:0 metrics:metrics views:binding]];

最佳答案

H:|[v]|

H 表示约束是水平添加的,同样 V 是垂直添加的。

| 表示绑定(bind)字典指示的 super View 。 NSDictionary *绑定(bind)

[v] 表示 View 本身。

因此 H:|[v]| 解析为 0 常量的前导和尾随约束。

V:[v(==height)]|

与此类似, View 被赋予底部约束和高度约束,并具有常量 height,如 NSDictionary *metrics 中所述。

请引用https://developer.apple.com/library/content/documentation/UserExperience/Conceptual/AutolayoutPG/VisualFormatLanguage.html获取更多信息。

关于ios - 了解 iOS Objective C 中的视觉格式约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47390788/

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