ios - 部署目标设置为 iOS 6 的应用程序精简
<p><p>要利用 iOS 9 附带的应用瘦身功能,我们必须在项目中使用 xcassets 目录。不过,文件也说:</p>
<blockquote>
<p>Xcode 6 provides different functionality for asset catalogs depending on the deployment target for your project:</p>
<p>For all projects, individual images can be loaded using set names.</p>
<p>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.</p>
</blockquote>
<p>如果部署目标设置为 iOS 7, Assets 目录将被编译为 .car 文件,而对于 iOS 6 目标,图像将被简单地复制到应用程序包中。</p>
<p>所以问题是:</p>
<ul>
<li>如果我使用 Assets 目录而不是 bundle ,但让部署目标保持在 iOS 6 上,并将应用存档上传到 iTunes 连接,服务器是否会对运行 iOS 9 的设备进行应用切片?</li>
<li>如果我在 Assets 目录中只有 @2x 图像,那么切片应用程序是否包含适用于 iPhone 6 plus 设备的这些图像?</li>
</ul>
<p>提前致谢!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>好的,经过几次测试,我得到了答案。</p>
<ol>
<li>如果您将部署目标设置为 iOS 6,将<strong>不</strong>应用应用切片。Images.xcassets 中的所有图像都将简单地复制到应用程序包中。因此,如果您希望在 iOS 9 上对图像资源进行切片,则必须将部署目标设置为 iOS 7 或更高版本。</li>
<li>是的,确实如此。</li>
</ol></p>
<p style="font-size: 20px;">关于ios - 部署目标设置为 iOS 6 的应用程序精简,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/33141460/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/33141460/
</a>
</p>
页:
[1]