ios - App is not showing in photo gallery on iPad -


i have application uploading files , want app show when user clicks on ipad photo gallery/camera roll. also, need show videos shot camera. appreciated.

this documenttypes list in plist:

<key>cfbundledocumenttypes</key> <array>     <dict>         <key>cfbundletypename</key>         <string>audio</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>public.mp3</string>             <string>public.mpeg-4-audio</string>             <string>com.apple.m4a-audio</string>             <string>public.audio</string>             <string>com.apple.protected-​mpeg-4-audio</string>             <string>public.aifc-audio</string>             <string>com.apple.coreaudio-​format</string>             <string>public.aiff-audio</string>             <string>com.microsoft.waveform-​audio</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>video</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>public.movie</string>             <string>public.avi</string>             <string>public.mpeg-4</string>             <string>public.mpeg</string>             <string>com.microsoft.windows-​media-wmv</string>             <string>com.apple.m4v.video</string>             <string>public.video</string>             <string>public.3gpp2</string>             <string>public.3gpp</string>             <string>com.apple.quicktime-movie</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>image</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>public.image</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>gif image</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>com.compuserve.gif</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>png image</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>public.png</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>tiff image</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>public.tiff</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>jpeg image</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>public.jpeg</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>opendocument spreadsheet</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>org.oasis.opendocument.spreadsheet</string>             <string>org.oasis-open.opendocument.spreadsheet</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>opendocument presentation</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>org.oasis.opendocument.presentation</string>             <string>org.oasis-open.opendocument.presentation</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>opendocument text</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>org.oasis.opendocument.text</string>             <string>org.oasis-open.opendocument.text</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>opendocument graphics</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>org.oasis.opendocument.graphics</string>             <string>org.oasis-open.opendocument.graphics</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>microsoft powerpoint</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>com.microsoft.powerpoint.ppt</string>             <string>org.openxmlformats.presentationml.presentation</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>microsoft excel</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>org.openxmlformats.spreadsheetml.sheet</string>             <string>com.microsoft.excel.xls</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>microsoft word</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>com.microsoft.word.doc</string>             <string>com.microsoft.word.wordml</string>             <string>org.openxmlformats.wordprocessingml.document</string>         </array>     </dict>     <dict>         <key>cfbundletypename</key>         <string>pdf</string>         <key>lshandlerrank</key>         <string>alternate</string>         <key>lsitemcontenttypes</key>         <array>             <string>com.adobe.pdf</string>         </array>     </dict> </array> 

i found answer. apple not allow 3rd party apps show in camera roll.

cfbundledocumenttypes photo library / camera roll


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -