1

電話アプリで使用される標準の iOS 7 電話アイコンをボタンの 1 つに追加したいと考えています。Xcodeでこれを行うにはどうすればよいですか? どこにも見つかりません。

4

1 に答える 1

0

残念ながら、サード パーティの開発者が使用できるのは次のシステム タブ バー項目のみであり、電話タブはその 1 つではありません。本当にアイコンを探しているだけなら、それも利用できません。あなたができる最も近いことは、あなた自身のものを作成することです。

typedef enum {
   UITabBarSystemItemMore,
   UITabBarSystemItemFavorites,
   UITabBarSystemItemFeatured,
   UITabBarSystemItemTopRated,
   UITabBarSystemItemRecents,
   UITabBarSystemItemContacts,
   UITabBarSystemItemHistory,
   UITabBarSystemItemBookmarks,
   UITabBarSystemItemSearch,
   UITabBarSystemItemDownloads,
   UITabBarSystemItemMostRecent,
   UITabBarSystemItemMostViewed,
} UITabBarSystemItem;
于 2013-10-09T20:41:48.630 に答える