michaellindahl
michaellindahl

Reputation: 2052

iOS Delete Button - Objective C

I was wondering where does one get access to iOS delete button. This is the button that Apple uses to close the iAd window, and for deleting iPhone apps from the home screen, and also the Twitter App uses it to delete the photo that you add to a tweet. Do they just download this image somewhere or is there an option for it somewhere like for the info button, and the detail disclosure.

Thanks

I also found that Growl uses this icon along with Lion's Mission Control...

Upvotes: 6

Views: 5969

Answers (4)

0xced
0xced

Reputation: 26548

You can use UIKit Artwork Extractor to extract about any iOS artwork that is not public. Just search for close and you will find several close button png images.

Upvotes: 10

hotpaw2
hotpaw2

Reputation: 70733

If it's actually an image and the iOS Simulator displays it, it should be hidden somewhere inside the Simulator frameworks or support files.

Upvotes: 0

Eduardo Scoz
Eduardo Scoz

Reputation: 24753

Apple doesn't make that image available, unfortunately. This iPad template has the icon you want, though, in a PSD: http://www.teehanlax.com/downloads/ipad-gui-psd/

Upvotes: 4

Lily Ballard
Lily Ballard

Reputation: 185721

What, you mean the circle with an X in it? It's pretty easy to make your own, either in an image editor or just drawing it in code. I can guarantee you that's what the Twitter app did.

Upvotes: -2

Related Questions