iPhone上的文件夹和图像在哪里?[swift]

时间:2023-01-22 20:59:54

I am adding folders and images in Assets.xcassets of Xcode.

我在Xcode的Assets.xcassets中添加文件夹和图像。

iPhone上的文件夹和图像在哪里?[swift]

Where is the folder or image of Assets.xcassets stored on the iPhone when testing the actual machine with Xcode?

使用Xcode测试实际机器时,存储在iPhone上的Assets.xcassets的文件夹或图像在哪里?

Also, I would like to know how to check whether the folder and image of Assets.xcaassets is installed in iPhone storage place right after launching the application.

此外,我想知道在启动应用程序后如何检查Assets.xcaassets的文件夹和图像是否安装在iPhone存储位置。

Ultimately I would like to install the image in my AWS on the iPhone of the user of the application at the first launch of the application.

最后,我想在应用程序首次启动时在应用程序用户的iPhone上将我的AWS安装在我的AWS中。

I would like to reduce the file size of the application.

我想减少应用程序的文件大小。

Adding images to the iPhone of the user of the application is not a malicious purpose.

将图像添加到应用程序用户的iPhone不是恶意目的。

And I do not know the best way.

我不知道最好的方法。

1 个解决方案

#1


1  

The images are compiled by Xcode and a file called Assets.car (CoreUI archive) is created.

图像由Xcode编译,并创建一个名为Assets.car(CoreUI archive)的文件。

The file is then bundled in the ipa file created when you export the app.

然后将该文件捆绑在导出应用程序时创建的ipa文件中。

If you uncompress the ipa (it's a simple zip file) you can see the car file inside the application packet.

如果你解压缩ipa(它是一个简单的zip文件),你可以在应用程序包中看到汽车文件。

#1


1  

The images are compiled by Xcode and a file called Assets.car (CoreUI archive) is created.

图像由Xcode编译,并创建一个名为Assets.car(CoreUI archive)的文件。

The file is then bundled in the ipa file created when you export the app.

然后将该文件捆绑在导出应用程序时创建的ipa文件中。

If you uncompress the ipa (it's a simple zip file) you can see the car file inside the application packet.

如果你解压缩ipa(它是一个简单的zip文件),你可以在应用程序包中看到汽车文件。