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 trialRoman Stalder
3,239 PointsText 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
Ben Hopkins
Full Stack JavaScript Techdegree Student 2,348 PointsI would use the options available to you in the attribute editor within xcode and avoid doing this programatically when using storyboards.
Roman Stalder
3,239 PointsHi 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.
Roman Stalder
3,239 PointsRoman Stalder
3,239 PointsHi 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.