gpt4 book ai didi

ios - 自动布局以放置 4 个相同宽度的 View

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:57:58 25 4
gpt4 key购买 nike

enter image description here

我正在使用自动布局。我想将 View 高度设置为等于另一个 View 的宽度。棕色 View 的宽度设置为与其父 View 成比例的 0.3,绿色 View 的高度应与棕色 View 的宽度相同。我已将约束设置为 4 个 View ,但 4 个 View 的宽度不相同

请引用图片。

最佳答案

Obj-c

NSLayoutConstraint *constraint = [NSLayoutConstraint
constraintWithItem:greenView
attribute:NSLayoutAttributeHeight
relatedBy:NSLayoutRelationEqual
toItem:brownView
attribute:NSLayoutAttributeWidth
multiplier: 1
constant:0];

swift

 NSLayoutConstraint(item: greenView, 
attribute: .Height,
relatedBy: .Equal,
toItem: brownView,
attribute: .Width,
multiplier: 1,
constant: 0.0);

我没有测试代码,如果有问题请告诉我

关于ios - 自动布局以放置 4 个相同宽度的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39204245/

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