Is there a way to have multiple lines of text in UILabel like in the UITextView or should I use the second one instead?
Thanks.
|
Is there a way to have multiple lines of text in Thanks. |
||||
|
I found a solution. One just has to add the following code:
|
|||||||||||||||||
|
|
In IB, set number of lines to 0 (allows unlimited lines) When typing within the text field using IB, use "alt-return" to insert a return and go to the next line (or you can copy in text already separated out by lines). |
|||||||||
|
|
The best solution I have found (to an otherwise frustrating problem that should have been solved in the framework) is similar to vaychick's. Just set number of lines to 0 in either IB or code
This will display the lines needed but will reposition the label so its centered horizontally (so that a 1 line and 3 line label are aligned in their horizontal position). To fix that add:
|
|||||||
|
|
If you have to use the:
property you can also use a standard line break |
||||
|
|
The solution above does't work in my case. I'm doing like this:
|
||||
|
|
|
||||
|
|
|
You can use
|
|||
|
|
UILineBreakModeWordWrapwas deprecated in iOS 6. You should now useNSLineBreakByWordWrapping = 0See the documentation here – Austin Oct 3 '12 at 1:03