Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试添加这些图像:
1) Images for the UITabBar 2) The application icon 3) The launch icon
我只是想确保我做对了。我用谷歌搜索“将图像添加到 ios 包”,但我似乎得到了一些过时的结果。我在 xCode 4.3.3 上,我只是想知道将图像添加到包中的正确步骤是什么。有没有办法在文件系统上组织它们,或者我只是在其中添加它们的那种扁平结构?
谢谢!
您将图像添加到项目中。然后选择右侧的 Xcode 窗格,然后单击左上角以获取文件视图,在左侧窗格中选择了新图像。向下滚动,您会看到类似“目标会员”的内容。确保为图像选中复选框。现在它将包含在您的捆绑包中。您现在可以使用 "[UIImage imageNamed:@"Foo.png"]" 等来处理它。
编辑: