如何查看iOS SDK中的所有图标以及如何将它们设置为我的UITabBarController标签?
答案 0 :(得分:8)
可能还有更多,但您可以在Interface Builder中查看Tab Bar项目的“Identifier”(在Inspector视图中)中的下拉。
更新:完整列表为here:
typedef enum {
UITabBarSystemItemMore,
UITabBarSystemItemFavorites,
UITabBarSystemItemFeatured,
UITabBarSystemItemTopRated,
UITabBarSystemItemRecents,
UITabBarSystemItemContacts,
UITabBarSystemItemHistory,
UITabBarSystemItemBookmarks,
UITabBarSystemItemSearch,
UITabBarSystemItemDownloads,
UITabBarSystemItemMostRecent,
UITabBarSystemItemMostViewed,
} UITabBarSystemItem;
看起来它只是Interface Builder显示的那些。
如果您要查找自定义图标,请查看this thread.