How to open a file (this is an XML file) using the iOS application that I am developing. I want to check my implementation: UIApplicationLaunchOptionsURLKey . How can I do it? iOS Simulator does not ship with Mail or anything else, so I don’t know how to test this feature. Any ideas?
I made document types in the Xcode Target Properties object bit, so I am sure that is correct:
<dict> <key>CFBundleTypeIconFiles</key> <array> <string>icon</string> </array> <key>CFBundleTypeName</key> <string>XML File</string> <key>LSItemContentTypes</key> <array> <string>public.XML</string> </array> </dict>
source share