rishabh
rishabh

Reputation: 1165

How to give "Share with" option while opening documents in iphone mail

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>

Upvotes: 1

Views: 141

Answers (1)

rishabh
rishabh

Reputation: 1165

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

Upvotes: 1

Related Questions