3

How can i see all the icons available from the iOS SDK and how can i set them to my UITabBarController tabs ?

EmptyStack
  • 51,274
  • 23
  • 147
  • 178
Alex
  • 10,869
  • 28
  • 93
  • 165

1 Answers1

8

There may be more, but you can check out the pulldown in Interface Builder for the Tab Bar Item's "Identifier" (in the Inspector view).

Update: The full list is here:

typedef enum {
   UITabBarSystemItemMore,
   UITabBarSystemItemFavorites,
   UITabBarSystemItemFeatured,
   UITabBarSystemItemTopRated,
   UITabBarSystemItemRecents,
   UITabBarSystemItemContacts,
   UITabBarSystemItemHistory,
   UITabBarSystemItemBookmarks,
   UITabBarSystemItemSearch,
   UITabBarSystemItemDownloads,
   UITabBarSystemItemMostRecent,
   UITabBarSystemItemMostViewed,
} UITabBarSystemItem;

Looks like it is just the ones that Interface Builder shows.

If you are looking for custom icons, take a look at this thread.

Community
  • 1
  • 1
Thilo
  • 257,207
  • 101
  • 511
  • 656