所以我决定看看为什么这么多.我在设备文件夹中找到了我的项目.
在Frameworks文件夹中有4个我的框架和8个Swift框架,您可以在上面的图片中看到
我的每个框架都包含相同的8个Swift框架.我可以以某种方式只添加这个快速框架一次吗?
并非全部.在插件文件夹中是我的自定义键盘扩展文件夹.我有200个图像添加到我的一个模块(框架)中,并将其引用到每个扩展中(因为它们需要用于构建键盘的图像).但在项目文件夹中,每个扩展文件夹都有该图像.它需要大量的内存.
所以…我可以以某种方式只添加一次图像(不是每个自定义键盘扩展名)?我可以只添加一次swift框架(不是每个我的框架和项目)吗?
编辑:
解决方法
… Xcode embeds a small Swift runtime library within your app’s bundle. Because the library is embedded,your app uses a consistent version of Swift that runs on past,present,and future OS releases.
有趣的是,您在每个框架中都看到了它.该声明似乎表明该框架不包含运行时库.
While your app’s runtime compatibility is ensured,the Swift language itself will continue to evolve,and the binary interface will also change. To be safe,all components of your app should be built with the same version of Xcode and the Swift compiler to ensure that they work together.
资料来源:Swift Blog – Compatibility
我不确定你是否能控制它.一个很好的选择是打败devforums,看看Swift的创造者是否可以减少更多光线.