OStack程序员社区-中国程序员成长平台

标题: ios - 如何让我的应用程序显示在 Open in... 菜单中。加速器 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 01:57
标题: ios - 如何让我的应用程序显示在 Open in... 菜单中。加速器

我想做与在苹果文档中解释本文相同的事情,但在 Appcelerator Titanium 中。我搜索了 Appcelerator 网站并没有找到方法。有人知道吗? https://developer.apple.com/library/content/qa/qa1587/_index.html



Best Answer-推荐答案


您需要在 tiapp.xml 中注册您希望能够处理的文件:

<?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>

然后,在您的应用程序代码中,每次触发 resume 事件(例如,Ti.App.addEventListener('resume', resume);),您可以查看 Ti.App.getArguments().url 以查看您的应用是否已通过其他应用打开。在我的应用程序中,我会这样做,另外我会扫描 Inbox 文件夹以查看是否有任何内容。当另一个应用程序在您的应用程序中打开一个文档时,它会被复制到此目录中,然后您的应用程序就会启动。所以 Ti.Filesystem.getFile(Ti.Filesystem.applicationDataDirectory, 'Inbox').getDirectoryListing() || [] 将为您提供其中所有文档的数组,然后您可以将其移出该目录,或者处理和删除。

关于ios - 如何让我的应用程序显示在 Open in... 菜单中。加速器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44758681/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4