gpt4 book ai didi

ios - 如何以编程方式更改 UIImageView 的高度?

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

我正在通过动手实践自学 Swift。我有一个简单的图像,它的高度约束在 Storyboard 中设置为 150 常量。但是我想以编程方式将其更改为 70。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let tableElement = tableView.dequeueReusableCell(withIdentifier: "FirstTable", for: indexPath)
tableElement.BigImage.image = ??
return tableElement
}

我可以通过 tableElement.BigImage.image 访问图像,我想找到它的高度属性并将其设置为 70。我试过这个 tableElement。 BigImage.image.topCapHeight = 70 但是这会出错。我该怎么做?

这是我的出路

    class myNewCell: UITableViewCell {

@IBOutlet weak var BigImage: UIImageView!


override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}

override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)

// Configure the view for the selected state
}

}

我正在尝试学习如何以编程方式更改图像的高度,因为我得到了 2 批不同的图像,并且我想按红色/蓝色的高度将它们分开。

最佳答案

双击编辑约束。为其设置标识符。 enter image description here

并以编程方式找到它。

for constraint in UIView().constraints {
if constraint.identifier == "your identifier" {
// set here
}
}

更新
当您创建自定义单元格时,添加另一个 socket 会更好。按住 CTRL 并拖动一个 socket ,它看起来像这样。

class myNewCell: UITableViewCell {

@IBOutlet weak var BigImage: UIImageView!
@IBOutlet weak var topCapHeight: NSLayoutConstraint!

override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}

override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)

// Configure the view for the selected state
}

}

关于ios - 如何以编程方式更改 UIImageView 的高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41373073/

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