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 Build a Simple iPhone App (iOS7) Refactoring into a Model Creating a Custom Class

Text alignment top left doesn't work properly

Hi there. This is not something Amit talked about, but I tried it for my own. I'd like to place all quotes top left inside the UILabel, instead of vertically and horizontally centred. I've found a solution with

[self.quotesLabel setNumberOfLines:0];
[self.quotesLabel sizeToFit];

but this does not work properly. It crops my output-label horizontally, every time I reload the quote, without switching back to original width. Does anyone have a solution for that?

2 Answers

I would use the options available to you in the attribute editor within xcode and avoid doing this programatically when using storyboards.

Hi Ben. Thanks for your feedback. Yes, i would like to use standard options using storyboards, but I can't find any attribute to change vertical text alignment from vertical centered to "top". So I have do find a workaround.

Hi Ben. Thanks for your feedback. Yes, i would like to use standard options using storyboards, but I can't find any attribute to change vertical text alignment from vertical centered to "top". So I have do find a workaround.