Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm allocating a UIButtonTypeCustom UIButton to a UIView with a background image that is smaller than the button's frame. Reason why the image is smaller is because I'm trying to add more of a "target area" for the UIButton. However, the image is being scaled to the full size of the frame, rather than just being the image's size.

I have tried setting the UIButton and UIButton's imageView contentMode property to "UIViewContentModeScaleAspectFit", but no luck, the image still gets stretched out.

Is there a way to do what I'm trying to do programmatically?

Thanks in advance!

share|improve this question
1  
Do you really need it to be the background image? Do you need to actually write text or place another image on top of it ? If not, use the image and not background image, as only the background image is stretched by default to match the frame. – Ignacio Inglese Jan 11 '12 at 18:43

2 Answers

A lot of people make the same mistake you do in regards to button images and then jump through hoops trying to make the button behave as they expect it to. Let's clear this up once and for all:

A UIButton has two types of images it can display -- a foreground image and a background image. The background image for a button is expected to replace the button's background texture. As such, it makes sense that it stretches to fill the entire background. However, the button's foreground image is expected to be an icon that may or may not display alongside text; it will not stretch. It may shrink if the frame is smaller than the image, but it will not stretch. You can even set the alignment of the foreground image using the Control alignment properties in Interface Builder.

A button's foreground and background image can be set in code like this:

// stretchy
[self setBackgroundImage:backgroundImage forState:UIControlStateNormal];  

// not stretchy
[self setImage:forgroundImage forState:UIControlStateNormal]; 
share|improve this answer
9  
What do you do when you need a non stretching image to be displayed with text on the top of it? – Zaky German Dec 23 '12 at 13:19

What you need to do is add your image as a UIImageView.

Than add a button with transperent background (UIColor ClearColor) on top of it with your desired width and height.

share|improve this answer
That is actually a bad suggestion, as the image will not be part of the button and will not reflect state changes (which would defeat the purpose of having an image as part of the button). – GtotheB Mar 12 at 0:15
For that you can change the image when the button is tapped in order to mimic the state change – ozba Mar 12 at 8:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.