xCode - 如何在单个项目中添加 2 个 Default.png 文件?
我的项目中有 2 个不同的目标(完整目标和轻型目标)。
我还有不同的 Default.png 文件(一个用于完整版本,一个用于轻型版本)。
是否可以将两个文件都包含在项目中(具有不同的文件夹)并从目标捆绑资源中排除另一个文件?
例如有:
TARGET FULL 仅保留在文件夹 A 中的捆绑文件 Default.png
TARGET LIGHT 仅保留在文件夹 B 中的捆绑文件 Default.png 中
或者还有其他方法可以实现此目的吗?
I have 2 different target in my project (full & light).
I also have different Default.png files (one for the full version and one for the light one).
Is it posible to include both files in the project (having different folders) and to exclude the other one from the target Bundle Resources?
For example to have:
TARGET FULL to keep in Bundle only file Default.png from folder A
TARGET LIGHT to keep in Bundle only file Default.png from folder B
Or is any other way to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将目标配置为使用未命名为
Default.png
的启动图像。将Info.plist
中的UILaunchImageFile
键设置为正确的文件名。You can configure the target to use a launch image not named
Default.png
. Set theUILaunchImageFile
key in yourInfo.plist
to the correct filename.