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 Photo Browser iPhone App Gestures Creating a Detail View Controller

imageView.frame = unwanted look

Sam Soffes

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?

Found 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.

2 Answers

You're awesome, fast to follow, but awesome! Sweet that you responded so late at night.