Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Line-height in iOS help

iOS doesn't seem to allow you to change the line-height too easily. Is there a preferred way to modify the leading in the code when developing for iOS?

Anyone have any tips with iOS typography? Help needed :)

Thanks in advance!

3 Answers

Stone Preston
Stone Preston
42,016 Points

looking at this maybe you could use an attributed string. its the second answer on the page. ios6+ only

Amit Bijlani
STAFF
Amit Bijlani
Treehouse Guest Teacher

As Stone mentioned you should probably use attributed strings. Here's some code to set custom line height when using a UILablel.

    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle defaultParagraphStyle] mutableCopy];
    paragraphStyle.lineSpacing = 13;
    paragraphStyle.minimumLineHeight = 13;
    paragraphStyle.maximumLineHeight = 16;

    label.attributedText = [[NSAttributedString alloc] initWithString:@"some text"
                                                                attributes:
                                 @{NSParagraphStyleAttributeName : paragraphStyle}];

Thanks guys, I will give this a go!