Is it possible to reduce the gap between text when put in multiple lines in a UILabel? We can set the frame, font size and # of lines. I want to reduce the gap between the two lines in that label.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
"Short answer: you can't. To change the spacing between lines of text, you will have to subclass UILabel and roll your own drawTextInRect, or create multiple labels." See: How to increase a space between two lines in multiline label ?? |
|||||
|
|
Here is a class that subclass UILabel to have line-height property : https://github.com/LemonCake/MSLabel |
|||
|
|
There's an alternative answer now in iOS 6, which is to set attributedText on the label, using an NSAttributedString with the appropriate paragraph styles. See this stack overflow answer for details on line height with NSAttributedString: |
|||
|
|
|
Starting from ios 6 you can set an attributed string to the UILabel. Check the following :
|
|||
|
|