3
如何查看iOS SDK中的所有圖標,以及如何將它們設置爲我的UITabBarController選項卡?什麼是可用的UITabBarController選項卡圖標?
如何查看iOS SDK中的所有圖標,以及如何將它們設置爲我的UITabBarController選項卡?什麼是可用的UITabBarController選項卡圖標?
可能還有更多,但您可以查看界面生成器中標籤欄項目的「標識符」(在檢查器視圖中)的下拉菜單。
更新:完整列表here:
typedef enum {
UITabBarSystemItemMore,
UITabBarSystemItemFavorites,
UITabBarSystemItemFeatured,
UITabBarSystemItemTopRated,
UITabBarSystemItemRecents,
UITabBarSystemItemContacts,
UITabBarSystemItemHistory,
UITabBarSystemItemBookmarks,
UITabBarSystemItemSearch,
UITabBarSystemItemDownloads,
UITabBarSystemItemMostRecent,
UITabBarSystemItemMostViewed,
} UITabBarSystemItem;
看起來它只是Interface Builder中顯示的。
如果您正在尋找自定義圖標,請看this thread.