gpt4 book ai didi

ios - 在 swift 3 中以编程方式设置 UIImageView AspectRatio 约束

转载 作者:可可西里 更新时间:2023-11-01 05:03:39 26 4
gpt4 key购买 nike

我在 Storyboard 中有一个 UIImageView,AspectRatio 是 1:1,在某些情况下我想在 ViewController 中以编程方式更改为 2:1。我在 ViewController 中创建了该约束的引用,但无法设置该约束。

最佳答案

您可以在 swift 3 中以编程方式更改约束

let aspectRatioConstraint = NSLayoutConstraint(item: self.YourImageObj,attribute: .height,relatedBy: .equal,toItem: self.YourImageObj,attribute: .width,multiplier: (2.0 / 1.0),constant: 0)
self.YourImageObj.addConstraint(aspectRatioConstraint)

关于ios - 在 swift 3 中以编程方式设置 UIImageView AspectRatio 约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44668106/

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