Using the iPhone SDK, how would I go about creating a red "delete" button similar to the one used when deleting contacts on the iPhone?

Screenshot (I'm trying to duplicate the red button at the bottom)

Thanks!

link|improve this question

feedback

10 Answers

up vote 57 down vote accepted

You first start with a stretchable image:

alt text

Then you make a button with the stretched image as the background and apply text.

UIButton *sampleButton = [UIButton buttonWithType:UIButtonTypeCustom];
[sampleButton setFrame:CGRectMake(kLeftMargin, 10, self.view.bounds.size.width - kLeftMargin - kRightMargin, 52)];
[sampleButton setTitle:@"Button Title" forState:UIControlStateNormal];
[sampleButton setFont:[UIFont boldSystemFontOfSize:20]];
[sampleButton setBackgroundImage:[[UIImage imageNamed:@"redButton.png"] stretchableImageWithLeftCapWidth:10.0 topCapHeight:0.0] forState:UIControlStateNormal];
[sampleButton addTarget:self action:@selector(buttonPressed) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:sampleButton];

Obviously, you will need to adjust the frame origin and size to match your app, as well as the target, selector, and title.

link|improve this answer
Thanks, it worked! – igul222 Sep 15 '09 at 18:05
Nice, elegant solution. +1 – Tim Sep 15 '09 at 18:44
Good solution. Just one codefix: you forgot the @-sign for the string in -[UIImage imageNamed:]. – Jonathan Sterling Sep 17 '09 at 1:14
Anyone have a green one? – Anthony Glyadchenko Feb 16 '10 at 19:36
Note: Anthony's Question was answered here: stackoverflow.com/questions/2276099/a-big-green-uiimage-anyone/… – amphetamachine Feb 16 '10 at 21:02
show 3 more comments
feedback

I've also made some buttons...retina and non-retina versions

If you want to use them in a Cell just use the following code in cellForRowAtIndexPath:

UIButton *sampleButton = [UIButton buttonWithType:UIButtonTypeCustom];
[sampleButton setFrame:[cell.contentView frame]];
[sampleButton setFrame:CGRectMake(0, 0, cell.bounds.size.width-20, 44)];
[sampleButton setBackgroundImage:[UIImage imageNamed:@"button_red.png"] forState:UIControlStateNormal];
[cell addSubview:sampleButton];

Green Button Normal

Red Button Normal

Grey Button Normal

Green Button Retina Red Button Retina Grey Button Retina

link|improve this answer
1  
Do you have any of these with a transparent background? When I put them in a view with a non-white background, it looks screwy... know what I mean? – Hisoka Aug 7 '11 at 17:08
1  
@Hisoka: sampleButton.alpha = 0.5; – titaniumdecoy Dec 18 '11 at 3:28
feedback

I think those ones are better (and they look fine on retina display too) :

alt text alt text

.png generated from this very nice .psd file : http://www.teehanlax.com/blog/2010/08/12/iphone-4-gui-psd-retina-display/

And then use it as a strechable image for the background of your UIButton:

UIImage* greenButton = [UIImage imageNamed:@"UIButton_green.png"]; 
UIImage *newImage = [greenButton stretchableImageWithLeftCapWidth:greenButton.size.width/2 topCapHeight:greenButton.size.height/2];
[callButton setBackgroundImage:newImage forState:UIControlStateNormal];

link|improve this answer
These look great! Wow, you are lifesaver, my friend – Hisoka Aug 7 '11 at 17:09
feedback

I've added some button images available freely under the MIT licence to my site, which more closely match the iOS glass buttons. (but this forum won't let me post images b/c I'm new)

To download them and for sample code, see:

http://www.geneticmistakes.com/articles/1000/stretchable-dynamic-images-for-buttons

link|improve this answer
feedback

To make it easy any color I created my own rendering for UIButton which lets you set a custom tint.

For those interested, it can be found on github at

https://github.com/appsinyourpants/Pants-Framework/blob/master/Classes/Views/PFTintedButton.m

link|improve this answer
Got it added but how do I create a PFTintedButton, do I use it like I would a UIButton and call PFTintedButton buttonWithType or is there something special I should do? I guess what I'm asking is if you have an example of creating a PFTintedButton with available options. If you have the time, I'd love an example. – Zach Jun 17 '11 at 20:20
feedback

I've done this recently also, and creating this button for it (and some Monotouch example code for any monotouchers):

alt text

It has less of a bevel which works better on any background, but doesn't match the iPhone UIGlassButton exactly.

link|improve this answer
feedback

Probably the simplest way to do it is to snag this iPhone GUI Photoshop file that contains lots of UI elements in PSD layers, then change the tint of the large button in Photoshop and save it as a PNG.

One advantage of doing it this way is that you can also create versions for button selected and/or highlight state and assign the images to a standard UIButton.

link|improve this answer
one disadvantage is you need to keep tons of large images in your bundle, and they will not fit the screen on a different rotation – coneybeare Sep 15 '09 at 17:28
feedback

You can create a separate section in your grouped table view, give that section only one row, and set that cell's background image to a red gradient image. You'll have to recreate that image on your own, though.

link|improve this answer
while this works, it is not a customizable as my presented solution as in order to get special highlighting or states, you would need to implement custom logic that Apple already includes in the UIButton class – coneybeare Sep 15 '09 at 17:29
feedback

This question is very close to yours, and contains a couple of ways of generating such a colored button.

link|improve this answer
feedback

Here is the entire built-in iOS assets: https://github.com/pixelfreak/iOS-UI-Assets

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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