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.
我想知道是否可以保存您刚刚在 Photoshop 中编辑的图像,并立即在 XCode 中使用它,而不是一直将图像拖到 XCode 中。
您可以创建一个文件夹引用到您保存图像的位置。
为此,请使用“将文件添加到 'NameOfProject' ”菜单命令,然后选择您的文件夹。确保选项设置如下:
然后,当您查看该文件夹的内容时,图像应该出现在 Xcode 中。引用它们时,您必须使用文件夹的名称。例如[UIImage imageNamed:@"MyImages/image.png"];
[UIImage imageNamed:@"MyImages/image.png"];