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

Ale*_*lex 3 objective-c ios uitabcontroller

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

Thi*_*ilo 8

可能还有更多,但您可以在Interface Builder中查看Tab Bar项目的"Identifier"(在Inspector视图中)中的下拉菜单.

更新:完整列表在这里:

typedef enum {
   UITabBarSystemItemMore,
   UITabBarSystemItemFavorites,
   UITabBarSystemItemFeatured,
   UITabBarSystemItemTopRated,
   UITabBarSystemItemRecents,
   UITabBarSystemItemContacts,
   UITabBarSystemItemHistory,
   UITabBarSystemItemBookmarks,
   UITabBarSystemItemSearch,
   UITabBarSystemItemDownloads,
   UITabBarSystemItemMostRecent,
   UITabBarSystemItemMostViewed,
} UITabBarSystemItem;
Run Code Online (Sandbox Code Playgroud)

看起来它只是Interface Builder显示的那些.

如果您正在寻找自定义图标,请查看此主题.