iOS SDK から利用可能なすべてのアイコンを表示するにはどうすればよいですか? また、それらを UITabBarController タブに設定するにはどうすればよいですか?
質問する
993 次
1 に答える
8
他にもあるかもしれませんが、Interface Builder のタブ バー アイテムの「識別子」のプルダウンを (インスペクター ビューで) 確認できます。
更新: 完全なリストはこちら:
typedef enum {
UITabBarSystemItemMore,
UITabBarSystemItemFavorites,
UITabBarSystemItemFeatured,
UITabBarSystemItemTopRated,
UITabBarSystemItemRecents,
UITabBarSystemItemContacts,
UITabBarSystemItemHistory,
UITabBarSystemItemBookmarks,
UITabBarSystemItemSearch,
UITabBarSystemItemDownloads,
UITabBarSystemItemMostRecent,
UITabBarSystemItemMostViewed,
} UITabBarSystemItem;
Interface Builderが表示するものだけのようです。
カスタム アイコンをお探しの場合は、このスレッドをご覧ください。
于 2011-08-18T08:02:04.030 に答える