ios - Saving a proprietary file to Dropbox using Document Interaction -


i'm trying save custom file extension dropbox using documentinteractioncontroller. dropbox show in documentinteractioncontroller's "open in" menu when file has recognized extension such .txt. there number of related topics tried follow. 1 example: associating app's custom file in ios.

the following shows uiexportedtypedeclarations:

<key>uiexportedtypedeclarations</key> <array>     <dict>         <key>uitypeidentifier</key>         <string>com.mysite.myapp.myext</string>         <key>uitypedescription</key>         <string>my special file</string>         <key>uitypetagspecification</key>         <dict>             <key>public.filename-extension</key>             <string>myext</string>             <key>public.mime-type</key>             <string>application/octet-stream</string>         </dict>         <key>uitypeconformsto</key>         <array>             <string>public.data</string>             <string>public.content</string>         </array>     </dict> </array> 

i'm not sure dropbox looks @ conformsto or tagspecification. did show in open in menu when testing .txt file , inadvertantly left "myextension" public.filename-extension key. perhaps thinking uiexportedtypedeclarations, or expectations dropbox file handling, off base. appreciated. i'm spinning wheels. thanks.

spelling error: uiexportedtypedeclaration not utexportedtypedeclaration. little uikit on brain. fixing spelling fixed problem. of course tags needed fixed.


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -