How can I set a custom background color of a button?
Interface Builder doesn't seem to have an interface to do this.
Is it only available programmatically? If so, can you provide an example, please?
|
6
|
How can I set a custom background color of a button? Interface Builder doesn't seem to have an interface to do this. Is it only available programmatically? If so, can you provide an example, please? |
|||
|
|
|
|
I read your question to require (as I do) a programmatic way to set button color. It's a glaring omission from the UIKit, and I couldn't get the undocumented UIGlassButton to work. I've solved this with a single segment
Note please that the A stretchable image with end caps works fine if you can use a finite set of canned images, but that doesn't fit the requirement! E.g.,
|
||
|
|
|
I solved this problem by creating my own button in Fireworks. I drew a rounded rectangle of about the size I wanted, with the fill color and border color I wanted. Trim the canvas, and save as a PNG. In XCode, add the file to the Resources folder. You can use a Custom button in Interface Builder and specify the image as that PNG. It will resize it as needed, put the text on top, etc. The curve of the corners may distort if you have to resize it much from the original. |
||
|
|
|
|
There's a private API that'll give you custom-colored shiny buttons (like the ones in the Timer app) without having to make your own images. The class is |
||
|
|
|
|
keremk was right when he said to change the 'view' background color when you have clicked on the button and gone into the inspector. This changes the little corners into whatever colour you picked. |
||
|
|
|
|
Hey Alex, Set your button type to "custom" in the button attributes palette. This will give you a square button with whatever color you picked for the background. If you want a button that looks more like a traditional button, but has a different color your going to need to go into some kind of image editing software and create it (I use photoshop for custom buttons). |
||
|
|
|
|
Setting the background color of the view for a rounded-rect button will not change the background color of the button. Try making the button a custom button (the first drop-down in the inspector) and then setting the background color. You will get the desired effect :) |
||||
|
|
|
I found that I needed to use a stretchable image to accomplish this. Apple's UICatalog example has one or more colored buttons that are drawn in this fashion. You could use their template image and recolor it to suit your button needs. I'm not sure about doing this in Interface Builder, but I was able to create a button and use an image for its contents using the following code:
|
||
|
|
|
|
Thanks, for your reply. I'm sure I'm missing something. When I change the color with that property all i get is green corners and not the entire background of the button. What am I doing wrong? Thanks, Alex
|
||
|
|
|
|
May be I misunderstood your question, but does below not work for you?
|
||||
|