I am looking to create a Custom UIButton (not subclass) progrmatically, I would like it to have a background image that will stretch as the UIButton's width increases. How would I do this?
|
feedback
|
|
First create a stretchable
Then use the stretchable image as the background:
When you set the backgroundImage on a | |||||||||||||
feedback
|
|
Better yet, use UIView's contentStretch property. Otherwise, you might get some nasty surprises if you use stretchableImageWithLeftCapWidth to shrink a graphic or to stretch a complex graphic with lighting or gloss effects. | |||
|
feedback
|
|
Well, UIView's contentStretch property would be the correct solution, but unfortunately it doesn't work with the UIButton background property (XCode 4.0.2 at least). It is even exposed in IB, so you wouldn't need any code for it. | |||
|
feedback
|
|
You have to set an UIImage created with the "stretchableImageWithLeftCapWidth:topCapHeight:"-Method as button background. For example:
| |||
|
feedback
|