有哪些可用的UITabBarController选项卡图标?

时间:2011-08-18 07:58:14

标签: objective-c ios uitabcontroller

如何查看iOS SDK中的所有图标以及如何将它们设置为我的UITabBarController标签?

1 个答案:

答案 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.