我正在尝试将我的应用程序添加到iPad中的“打开方式...”选项,我已将我的应用程序支持的文件类型添加到Info.plist中的文档类型。这适用于在Mail客户端和Safari中打开的文件。有没有办法将其添加到iPad库?
答案 0 :(得分:0)
我认为这对将来的用户有用
您无法在图库中打开...选项但如果您不想在其他应用中获得该选项,那么您已在info.plist中进行了一些更改
e.g
<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>
这使您的应用程序在其他应用程序中的Open in ...中列出。并确保您已实施了
(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
你的AppDelegate中的方法来处理回调..