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

I have a multiline UILabel in a UITableViewCell. I want to control the spacing between the lines, to compress the lines a bit closer together. I've read that the only way to control that "leading" is with Attributed Strings. So I've done this by making the label attributed instead of plain text, and then I set the lineHeightMultiple to 0.7 to compress the lines:

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.lineHeightMultiple = 0.7;
paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
paragraphStyle.alignment = NSTextAlignmentLeft;

NSDictionary *attrs = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@"HelveticaNeue-Bold" size:15.0], NSFontAttributeName, paragraphStyle, NSParagraphStyleAttributeName, nil];

NSMutableAttributedString *attributedText = [[NSMutableAttributedString alloc] initWithString:@"Here is some long text that will wrap to two lines." attributes:attrs];

[cell.textLabel setAttributedText:attributedText];

The problem is, now the overall label is not centered vertically within the UITableViewCell.

How can I fix this? In the attachment below, you can see what I mean. The "compressed" multiline UILabel is higher up in each row than it should be, and doesn't vertically align with the arrow indicator on the right side any more.

example

share|improve this question
1  
I think increasing y position of UILable when you add it to UITableViewCell can make your work done, It is the easiest way I came out with. Many be other other options are also available. – Yuvrajsinh Jan 31 at 9:21
@Yuvrajsinh, i would vote for your answer for the bounty if you placed it in an answer. it might also be possible to adjust the lineSpacing, paragraphSpacingBefore and paragraphSpacing attributes instead of doing this in order for the text to appear as desired in the middle of the UILabel text area. – john.k.doe Feb 1 at 5:16

1 Answer

up vote 1 down vote accepted
+50

Line height multiple changes the line hight of all lines, including the first line, so it all rides a little high in your label. What you really want is to adjust the line spacing, so the second line's starting base line is a little closer than the default.

Try replacing:

paragraphStyle.lineHeightMultiple = 0.7;

with:

paragraphStyle.lineSpacing = -5.0;

Adjust the line spacing value to taste.

share|improve this answer
Thank you! I swear I tried messing around with lineSpacing in lieu of lineHeightMultiple, but could never get it to work properly (I think perhaps I was trying positive integers instead of negative)! – Mason G. Zhwiti Feb 3 at 1:49

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.