gpt4 book ai didi

ios - UILabel 没有显示更新后的高度?

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

在 IB 中,标签高度为 50。我已经在标签中添加了文本,直到它扩展了它的高度。我试着检查标签高度,但它仍然显示 50。例如:

print(label.bounds.size.height) //50
label.text = "Long text more than 200 chars"
print(label.bounds.size.height) // still shows 50.

如何获取更新的标签高度?

最佳答案

试试这个方法:

label.numberOfLines = 0

print(label.bounds.size.height) //50

label.text = "Long text more than 200 chars"

label.sizeToFit()

print(label.bounds.size.height)

关于ios - UILabel 没有显示更新后的高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37166626/

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