Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
possible duplicate of How to increase a space between two lines in multiline label? – S P Varma Sep 26 '12 at 12:13

4 Answers

up vote 17 down vote accepted

"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 ??

share|improve this answer
5  
Since iOS 6.0, you can control it via NSAttributedString (also available in properties of UILable in Xcode's interface builder). – kenji Dec 18 '12 at 9:21

Here is a class that subclass UILabel to have line-height property : https://github.com/LemonCake/MSLabel

share|improve this answer
This worked for me, thanks. I also tried to use MTLabel, but this one was better. – wzbozon Jan 10 at 16:20

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:

Core Text - NSAttributedString line height done right?

share|improve this answer

Starting from ios 6 you can set an attributed string to the UILabel. Check the following :

    NSMutableParagraphStyle *paragrahStyle = [[NSMutableParagraphStyle alloc] init];
[paragrahStyle setLineSpacing:40];
[attributedString addAttribute:NSParagraphStyleAttributeName value:paragrahStyle range:NSMakeRange(0, [labelText length])];

cell.label.attributedText = attributedString ;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.