Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.
Dustin 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.