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!
|
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!
| |||
|
feedback
|
|
You first start with a stretchable image: Then you make a button with the stretched image as the background and apply text.
Obviously, you will need to adjust the frame origin and size to match your app, as well as the target, selector, and title. | |||||||||||
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:
| |||||||||
feedback
|
|
I think those ones are better (and they look fine on retina display too) :
.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 | ||||
|
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 | |||
|
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 | |||
feedback
|
|
I've done this recently also, and creating this button for it (and some Monotouch example code for any monotouchers):
It has less of a bevel which works better on any background, but doesn't match the iPhone | ||||
|
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. | |||
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. | |||
feedback
|
|
This question is very close to yours, and contains a couple of ways of generating such a colored button. | |||
|
feedback
|
|
Here is the entire built-in iOS assets: https://github.com/pixelfreak/iOS-UI-Assets | ||||
|
feedback
|