1

我想将电话应用程序中使用的标准 iOS 7 电话图标添加到我的按钮之一。我如何在 Xcode 中做到这一点?到处都找不到。

4

1 回答 1

0

不幸的是,第三方开发人员只能使用以下系统选项卡栏项目,而电话选项卡不是其中之一。如果您真的只是在寻找图标,它也不可用。你能做的最接近的事情就是创建你自己的。

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