ios - iTunes 文件共享说明
<p><p>最近我的申请被 Apple 拒绝了,原因是:</p>
<blockquote>
<p>"Your app has the <code>UIFileSharingEnabled</code> key set to true in the <code>Info.plist</code>, but files and folders not intended for file-sharing are contained within its Documents folder..."</p>
</blockquote>
<p>我将我的应用程序数据存储在文档目录、图像和核心数据数据库中。这是一个非常简单的进步,它允许用户备份和导入数据。以下是主要步骤:</p>
<ol>
<li>用户可以备份数据,压缩文件夹。</li>
<li>然后用户可以使用 iTunes 文件共享来取出备份。</li>
<li>用户可以导入覆盖文档目录中数据的压缩文件。</li>
</ol>
<p>有没有其他人遇到过类似的问题?看来我用对了。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您应该将 zip 文件放在 <code>Documents</code> 文件夹中,而不是任何其他文件。您还将核心数据文件(以及用户不应该看到的一些其他文件)放在 <code>Documents</code> 文件夹中,这就是它被拒绝的原因。</p>
<p>您可以将用户不应该看到的任何文件存储在另一个文件夹中,例如 <code>Application Support</code> 文件夹。</p></p>
<p style="font-size: 20px;">关于ios - iTunes 文件共享说明,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/17911807/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/17911807/
</a>
</p>
页:
[1]