2011-08-18 56 views

回答

8

可能還有更多,但您可以查看界面生成器中標籤欄項目的「標識符」(在檢查器視圖中)的下拉菜單。

更新:完整列表here

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

看起來它只是Interface Builder中顯示的。

如果您正在尋找自定義圖標,請看this thread.

相關問題