ios - 如何让我的应用程序显示在 Open in... 菜单中。加速器
<p><p>我想做与在苹果文档中解释本文相同的事情,但在 Appcelerator Titanium 中。我搜索了 Appcelerator 网站并没有找到方法。有人知道吗?
<a href="https://developer.apple.com/library/content/qa/qa1587/_index.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/content/qa/qa1587/_index.html</a> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要在 <code>tiapp.xml</code> 中注册您希望能够处理的文件:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<ios>
<plist>
<dict>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>Add to Housters</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSHandlerRank</key>
<string>Owner</string>
<key>LSItemContentTypes</key>
<array>
<string>com.adobe.pdf</string>
<string>com.microsoft.word.doc</string>
</array>
</dict>
</array>
</dict>
</plist>
</ios>
</ti:app>
</code></pre>
<p>然后,在您的应用程序代码中,每次触发 <code>resume</code> 事件(例如,<code>Ti.App.addEventListener('resume', resume);</code>),您可以查看 <code>Ti.App.getArguments().url</code> 以查看您的应用是否已通过其他应用打开。在我的应用程序中,我会这样做,另外我会扫描 <code>Inbox</code> 文件夹以查看是否有任何内容。当另一个应用程序在您的应用程序中打开一个文档时,它会被复制到此目录中,然后您的应用程序就会启动。所以 <code>Ti.Filesystem.getFile(Ti.Filesystem.applicationDataDirectory, 'Inbox').getDirectoryListing() || []</code> 将为您提供其中所有文档的数组,然后您可以将其移出该目录,或者处理和删除。</p></p>
<p style="font-size: 20px;">关于ios - 如何让我的应用程序显示在 Open in... 菜单中。加速器,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/44758681/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/44758681/
</a>
</p>
页:
[1]