How can I make a multiline UILabel in interface builder for iOS? I tried the UITextView but it didn’t quite suit my needs.
How can I add multiline (text) in label?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
numberOfLinesproperty which defines maximum number of lines a label can have. By default, it’s1. Setting it to0means the label will have unlimited lines.You can do it in code:
Or in Interface Builder: