菜鸟教程小白 发表于 2022-12-13 07:58:45

ios - 如何在 phonegap build 中使用 iTunes 文件导入/导出功能


                                            <p><p>我正在使用 apache cordova 和 adobe phonegap build 构建一个小应用程序。</p>

<p>我已经为 html5 文件 api 文件系统添加了 filer.js 包装器,它就像一个魅力。
我可以在应用程序中编写、列出和打开我的文件。</p>

<p>我需要做的是使用 iTunes 和基座电缆(没有 wifi 或互联网可用)检索文件。</p>

<p>我尝试了很多配置,但无法让我的应用出现在我可以从中获取文件的应用列表中。</p>

<p>到目前为止,我的 config.xml 文件配置是:</p>

<pre><code>&lt;feature name=&#34;http://api.phonegap.com/1.0/file&#34;/&gt;
&lt;preference name=&#34;UIFileSharingEnabled&#34; value=&#34;true&#34; /&gt;
&lt;preference name=&#34;iosPersistentFileLocation&#34; value=&#34;Compatibility&#34; /&gt;


&lt;key&gt;Plugins&lt;/key&gt;
    &lt;dict&gt;
      &lt;key&gt;File&lt;/key&gt;
      &lt;string&gt;CDVFile&lt;/string&gt;
    &lt;/dict&gt;

    &lt;key&gt;Plugins&lt;/key&gt;
    &lt;dict&gt;
      &lt;key&gt;FileTransfer&lt;/key&gt;
      &lt;string&gt;CDVFileTransfer&lt;/string&gt;
    &lt;/dict&gt;
</code></pre>

<p>此应用仅适用于 iPad 上的 ios。</p>

<p>任何想法将不胜感激。谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我相信这只能通过 cordova 插件来完成,因为只有插件才能修改 plist 文件。以下是我使用 cordova 4.3.0 所采取的步骤:</p>

<ol>
<li><p>在你的cordova项目之外的某个地方创建你的插件目录,比如说在/home/user/中。该插件只包含一个文件,目录结构如下:</p>

<pre><code>/home/user/com.mycompany.cordova.itunesfilesharing/
/home/user/com.mycompany.cordova.itunesfilesharing/plugin.xml
</code></pre> </li>
<li><p>在插件目录下需要plugin.xml文件:</p></li>
</ol>

<pre class="lang-xml prettyprint-override"><code>&lt;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&gt;
&lt;plugin xmlns=&#34;http://apache.org/cordova/ns/plugins/1.0&#34;
      xmlns:android=&#34;http://schemas.android.com/apk/res/android&#34;
      id=&#34;com.mycompany.cordova.itunesfilesharing&#34;
      version=&#34;1.0.0&#34;&gt;

    &lt;name&gt;Enable iOS iTunes file sharing in Plist file&lt;/name&gt;
    &lt;description&gt;iOS plugin for a custom Plist addition&lt;/description&gt;
    &lt;platform name=&#34;ios&#34;&gt;
      &lt;config-file target=&#34;*-Info.plist&#34; parent=&#34;UIFileSharingEnabled&#34;&gt;
            &lt;true/&gt;
      &lt;/config-file&gt;
    &lt;/platform&gt;
&lt;/plugin&gt;
</code></pre>

<ol 开始=“3”>
<li><p>那么你需要把这个插件添加到你的cordova项目中:</p>

<pre><code>cordova plugin add /home/user/com.mycompany.cordova.itunesfilesharing
</code></pre> </li>
</ol>

<p>这会将插件复制到您的 cordova 项目中。添加后,您将看到这些已添加到您的 plist 文件中:</p>

<pre><code>&lt;key&gt;UIFileSharingEnabled&lt;/key&gt;
&lt;true/&gt;
</code></pre>

<p>这就是我所要做的,不需要更改 config.xml。只需添加自定义插件。然后这样的应用程序将允许访问它在 iTunes 中的 Documents 目录。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 phonegap build 中使用 iTunes 文件导入/导出功能,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23885283/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23885283/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 phonegap build 中使用 iTunes 文件导入/导出功能