How do I open a file (it's an XML file) with the iOS app I'm developing. I want to test my: UIApplicationLaunchOptionsURLKey implementation. How do I do this? iOS Simulator doesn't come with Mail or anything so I'm clueless as to testing that kind of a function.
Any ideas?
I did Document Types under Xcode's Target Properties bit so I'm pretty sure that's right:
<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>