0

我正在尝试将我的应用程序添加到 iPad 中的 Open In ... 选项,并且我已将我的应用程序支持的文件类型添加到 Info.plist 中的文档类型中。这适用于在邮件客户端和 safari 中打开的文件。有没有办法将此添加到 iPad 画廊?

4

1 回答 1

0

我认为这将有助于未来的用户

您无法在图库中获得 Open in... 选项。但是,如果您不想在其他应用程序中获得该选项,那么您已经在 info.plist 中进行了一些更改

例如

<key>CFBundleDocumentTypes</key>
<array>
    <dict>
        <key>CFBundleTypeName</key>
        <string>Images</string>
        <key>LSHandlerRank</key>
        <string>Alternate</string>
        <key>LSItemContentTypes</key>
        <array>
            <string>public.image</string>
        </array>
    </dict>
</array>

这会使您的应用程序在其他应用程序的 .... 中打开。并确保您已实施

(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation

AppDelegate 中处理回调的方法..

于 2014-06-27T11:46:58.943 回答