I\'ve seen answers to vertical resizing that involve autolayout, but the UILabel
s I\'m creating are only needed at runtime. (I might need anywhere from zero to many
Set the label's numberOfLines
property to zero and fix the width of your labels with constraints (either by constraining the width explicitly or by constraining the leading and trailing edges to some other view like the label's superview). Then the labels will resize vertically automatically to the height that fits the text. You'll need to pin one label via its top constraint so the view system knows where to start the layout, then the top of all your other labels should be constrained to the bottom of the previous label. This way they will all layout relative to the height of the previous label.
edit in response to your comment:
You can set the width of a view explicitly on iOS 9 and later by using the widthAnchor
property. You can set it on older iOS versions using NSLayoutConstraints
(search SO for examples).
e.g.:
label.widthAnchor.constraintEqualToConstant(50.0).active = true
This would set the label's width to 50 points wide, but not fix its height, so with numberOfLines = 0
then the label will auto-resize vertically when you set the text.