We are talking about this , for example

Your goal is to capture the 1x and 2x badges? There are several online resources (free and paid), but I assume that your goal is to get these icons from the device in some way.
These are the ones that come from UITabBarItem init with TabBarSystemItem
self.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemFavorites tag:0]
If you are going to extract all of them, see here for an idea.
If you just want to list them by looking at the headings, you will find
typedef enum { UITabBarSystemItemMore, UITabBarSystemItemFavorites, UITabBarSystemItemFeatured, UITabBarSystemItemTopRated, UITabBarSystemItemRecents, UITabBarSystemItemContacts, UITabBarSystemItemHistory, UITabBarSystemItemBookmarks, UITabBarSystemItemSearch, UITabBarSystemItemDownloads, UITabBarSystemItemMostRecent, UITabBarSystemItemMostViewed, } UITabBarSystemItem;
loretoparisi
source share