No estoy seguro si se puede hacer esto en el Interface Builder, pero que sin duda puede usar "sistema" iconos programáticamente, por ejemplo:
[[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemDownloads tag:0];
Hay una serie de otros iconos:
typedef enum {
UITabBarSystemItemMore,
UITabBarSystemItemFavorites,
UITabBarSystemItemFeatured,
UITabBarSystemItemTopRated,
UITabBarSystemItemRecents,
UITabBarSystemItemContacts,
UITabBarSystemItemHistory,
UITabBarSystemItemBookmarks,
UITabBarSystemItemSearch,
UITabBarSystemItemDownloads,
UITabBarSystemItemMostRecent,
UITabBarSystemItemMostViewed,
} UITabBarSystemItem;
Si desea cualquier otro que supongo que tendrá que sacar su propia cuenta!
¿No crees que esos iconos tienen derechos de autor? –