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 trialDustin James
11,364 PointsimageView.frame = unwanted look
When I follow the instructions to set the image square and centered, I get a full screen image that is stretched. Here is my code:
CGSize size = self.view.bounds.size;
CGSize imageSize = CGSizeMake(size.width, size.height);
self.imageView.frame = CGRectMake(0.0, (size.height - imageSize.height) / 2.0, imageSize.width, imageSize.height);
Do you see something that I am missing?
2 Answers
Sam Soffes
Treehouse Guest TeacherGlad you got it!
Dustin James
11,364 PointsYou're awesome, fast to follow, but awesome! Sweet that you responded so late at night.
Dustin James
11,364 PointsDustin James
11,364 PointsFound it!
CGSize imageSize = CGSizeMake(size.width, size.width);
I was getting the size.height which was making the image fit to the height of the view as well... rookie mistake.