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!
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

Michael Trilford
7,232 PointsLine-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
42,016 Pointslooking at this maybe you could use an attributed string. its the second answer on the page. ios6+ only

Amit Bijlani
Treehouse Guest TeacherAs 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}];

Michael Trilford
7,232 PointsThanks guys, I will give this a go!