ios. UILabel resize issue

72 Views Asked by At

I have some issue with labels layout using storyboard.

imageOne

Left view snapped to labels trailing constraint, and centered according to text, and nothing more. So problem appears when I try to set different text to label, (when text contains number of characters greater then in text on story board). After text has been setting label does't resize it's frame.

Here, how it looks in runtime:

imageTwo

I have the same issue with other all labels in project, they are don't resize in runtime, but They should. Here is how it should looks like :

imageThree

I'v already tried to add layoutIfNeeded() and sizeToFit() to those labels, but it has no effect. I made another project, with pretty same label and constraints, and there it works fine, as should. But not in this project.

What problem could be in?

1

There are 1 best solutions below

5
On

It could also depend on when you're setting the text of the label.

If you're setting the text in viewDidLoad try doing it in viewDidAppear.