I would like to create an associated file with tiff files in my iOS application (that is, so that my application appears as the target for opening TIFF files from Mail or Safari). Adding the following to my Info.plist file does not work:
<key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeName</key> <string>tiff</string> <key>LSItemContentTypes</key> <array> <string>public.tiff</string> </array> <key>LSHandlerRank</key> <string>Alternate</string> </dict> </array>
I have an application that I associate with PDF files the same way and it works great. I find it impossible to associate the application with the tiff file type in iOS, but I cannot find the documentation about that.
Has anyone else been lucky to get this to work or find the final βno, you can't do thisβ?
source share