tags:

views:

148

answers:

3

My Problem is this, I want to add some component to my App I saw in some other App. Everytime I wnat to do this, I start googling around for the name. It took me some time to find the name of UIActionSheet. Now I'm looking for that transparent overlay that appears when you turn the volume up and down.

So, is there a good visual guide to the UIKit components? As an example, see the visual guide to swing components or this visual guide which is way to short/incomplete. And secondly, what's the name of the component I'm looking for?

+2  A: 

Apple has provided a sample iPhone application called UICatalog. It lists all (or most?) of the standard UIKit component in different variants.

You can download the sample from here.

Claus Broch
Thanks, that's a good one, but there are definitely not all UI components in it. E.g. the TabBar is missing.
Tim Büthe
That's true, so my "(or most?)" is the right answer. I do however doubt it would be possible to include all UIKit classes into one application, since some of them only makes sence on the root level - meaning they would not be able to co-exist and giving a true look-and-feel.
Claus Broch
You right and I give you an upvote. However, I hope someone could provide a link to a good website.
Tim Büthe
+2  A: 

The iPhone Human Interface Guidelines has a section called Brief Tour of the Application User Interface that shows the various UI features by name with links to the API docs.

progrmr
+1  A: 

Hi Tim,

i recently had the same problem. Googling a lot i came across the following page. This overlay works pretty well and is easy to use.

look at: http://github.com/jdg/MBProgressHUD

Hope this is what you were looking for.

Well, that answers at least the second part of my question. Thanks and +1.
Tim Büthe