具有自动布局的UILabel高度不起作用

时间:2018-07-23 12:23:07

标签: ios swift autolayout

我需要一个基于文本长度的动态高度标签。我设置的行数为0,换行符为自动换行。

uilabel setting

但是它不起作用

set text

result

我错过了任何设置吗?似乎默认行为是不自动换行,但我将其更改为“自动换行”,但标签高度仍未扩展。

1 个答案:

答案 0 :(得分:3)

我做了你所做的一切:

override func viewDidAppear(_ animated: Bool) {
    super.viewDidAppear(animated)
    self.label1.text = "adsfadsf adf adfasdf adfadf adsfadf adfafasdfa adfadf adfadff adsfadfasdf adsfadfasf"
}

enter image description here

enter image description here

这就是我得到的:

enter image description here

这也是您应该得到的。如果不是,那么其他事情还在发生。