Objective-C / iOS share documents to upload in my app -
i'm doing app dropbox , need know difference between 2 photos:
i want upload selected file in server.
i want app appear here:
but appears here:
how can show app apps in first photo?? (pruebamenu app)
edit
this documents types:
edit2 info.plist code:
<key>cfbundledocumenttypes</key> <array> <dict> <key>cfbundletypeiconfiles</key> <array> <string>approv</string> <string>logoapp</string> </array> <key>cfbundletypename</key> <string>prueba</string> <key>cfbundletyperole</key> <string>viewer</string> <key>lshandlerrank</key> <string>owner</string> <key>lsitemcontenttypes</key> <array> <string>com.adobe.pdf</string> <string>public.image</string> <string>public.video</string> </array> </dict> </array>
to app show in first photo, app must register type of files supports. app's plist must contain cfbundledocumenttypes key , inside array declare different file types app supports. see apple doc more information: https://developer.apple.com/library/ios/documentation/filemanagement/conceptual/documentinteraction_topicsforios/articles/registeringthefiletypesyourappsupports.html
Comments
Post a Comment