10

我想使用搜索、下载、联系人、设置和列表等标准图标。它们中的大多数存在于 App Store 等应用程序中,但我不知道如何检索它们。

谢谢

4

4 回答 4

10

见这里: http ://www.alexcurylo.com/blog/2009/01/03/extracting-sdk-icons/

例如,让我们决定我们希望在我们的一个选项卡上放置一个相机图像。因此,我们挖掘了模拟器资源,这些资源位于

/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.0.sdk/System/Library

我们在上面找到了一个看起来像我们想要的东西

/PrivateFrameworks/PhotoLibrary.framework/CameraIcon.png

但是等等,这并不那么容易!模拟器 SDK 中所有据称的 PNG 图像实际上都是 Apple 的 PNG 格式的古怪 iPhone 变体,所以我们必须以某种方式处理它......

[更新:或者,另一方面,将相机图标用于与相机相关的功能实际上在苹果看来可能是一大堆 FAIL。所以要小心你如何使用这些图标,孩子们!]

于 2009-07-14T04:50:01.160 回答
9

不确定您是否可以在 Interface Builder 中执行此操作,但您当然可以通过编程方式使用“系统”图标,例如:

[[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemDownloads tag:0];

还有许多其他图标:

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

如果你想要其他任何我想你必须自己画它们!

于 2009-01-14T12:52:53.973 回答
3

再一次,在视觉上:在 Interface Builder 中,选择您的选项卡栏或工具栏项目,然后在检查器 (⌘1) 中调出属性选项卡,在标识符下,选择您要使用的系统图标。

于 2009-04-18T17:11:42.283 回答
0

每个应用程序的图标都在该应用程序的目录中。只需使用 SCP 将它们复制到您的计算机上。

例如,应用商店的图标位于/Applications/MobileStore.app

于 2009-01-14T08:37:01.197 回答