1

So I've been going through the "Document Interaction Programming Topics for iOS". I've been able to achieve the "Open with myapp" option through Mail, was wondering how can I change the option to "Share with myapp" depending upon the file types specified? This is what I've tried:

<key>CFBundleDocumentTypes</key>
<array>
    <dict>
        <key>CFBundleTypeName</key>
        <string>Document</string>
        <key>LSHandlerRank</key>
        <string>Alternate</string>
        <key>CFBundleTypeRole</key>
        <string>Owner</string>
        <key>LSItemContentTypes</key>
        <array>
            <string>public.data</string>
        </array>
    </dict>                
</array>
rishabh
  • 1,155
  • 1
  • 10
  • 17
  • Just to specify a bit more, I want to register my app for opening documents from any external application. – rishabh Nov 26 '12 at 14:41

1 Answers1

1

Turns out from crawling other sites, the same cannot be done :-(

rishabh
  • 1,155
  • 1
  • 10
  • 17