iOS Open in在共享扩展中不起作用

时间:2016-03-07 15:39:32

标签: ios swift ios-app-extension uidocumentpickervc

在应用集成的“应用扩展程序”处理中。它具有“开放式”功能。 我使用特殊文件时遇到的问题(例如,它有特殊的扩展名 - file_name.myextension)。当我尝试从电子邮件客户端“打开”时。

enter image description here

我会收到错误:“没有安装合适的应用程序”

enter image description here

顺便说一下,我更新了plist文件UIDocumentPickerSupportedFileTypes部分:

        <key>UIDocumentPickerSupportedFileTypes</key>
        <array>
            <string>.myextension</string>
            <string>public.content</string>
        </array>

这没有用。如果你有一些想法,它会很棒。感谢。

1 个答案:

答案 0 :(得分:1)

使用自定义文件类型时,您必须添加新的UTI。

了解更多信息: https://developer.apple.com/library/ios/qa/qa1587/_index.html