要利用 iOS 9 附带的应用瘦身功能,我们必须在项目中使用 xcassets 目录。不过,文件也说:
Xcode 6 provides different functionality for asset catalogs depending on the deployment target for your project:
For all projects, individual images can be loaded using set names.
For projects with a deployment target of at least iOS 7 or OS X 10.9, Xcode compiles your asset catalogs into a runtime binary file format that reduces the download time for your app.
如果部署目标设置为 iOS 7, Assets 目录将被编译为 .car 文件,而对于 iOS 6 目标,图像将被简单地复制到应用程序包中。
所以问题是:
- 如果我使用 Assets 目录而不是 bundle ,但让部署目标保持在 iOS 6 上,并将应用存档上传到 iTunes 连接,服务器是否会对运行 iOS 9 的设备进行应用切片?
- 如果我在 Assets 目录中只有 @2x 图像,那么切片应用程序是否包含适用于 iPhone 6 plus 设备的这些图像?
提前致谢!
Best Answer-推荐答案 strong>
好的,经过几次测试,我得到了答案。
- 如果您将部署目标设置为 iOS 6,将不应用应用切片。Images.xcassets 中的所有图像都将简单地复制到应用程序包中。因此,如果您希望在 iOS 9 上对图像资源进行切片,则必须将部署目标设置为 iOS 7 或更高版本。
- 是的,确实如此。
关于ios - 部署目标设置为 iOS 6 的应用程序精简,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/33141460/
|