web-dev-qa-db-ja.com

Xcodeですべてのシステムアイコンを取得する方法

ここにリストされているカメラスイッチアイコンを使用できるようにしたいのですが、スイッチのプレーンアイコンではありません。 https://developer.Apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/BarIcons.html

しかし、私のバーボタンアイテムの下のXcodeでは、リストされていないようですか? enter image description here

私はおそらく露骨に明らかな何かを見逃していることを理解しています。誰でもこれを助けることができますか?

12
user1503606

this のような

enter image description here

あなたの目的は、1xおよび2xアイコンをつかむことですか?いくつかのオンラインリソース(無料および有料)がありますが、あなたの目的は何らかの方法でこれらのアイコンをデバイスから直接取得することだと思います。

これらはUITabBarItem initからTabBarSystemItemを使用したものです

self.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemFavorites tag:0]

それらすべてを抽出する場合は、 here を参照してください。

それらを単にリストしたい場合は、見つけるヘッダーを見てください

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