How can I make a multiline UILabel in interface builder for iOS? I tried the UITextView but it didn't quite suit my needs.
UILabel
UITextView
How can I add multiline (text) in label?
You can use numberOfLines property which defines maximum number of lines a label can have. By default, it's 1. Setting it to 0 means the label will have unlimited lines.
numberOfLines
1
0
You can do it in code:
textLabel.numberOfLines = 5 // for example
Or in Interface Builder:
2.1m questions
2.1m answers
60 comments
57.0k users