Thursday, March 31, 2016

my iOS application does not handle image file type in all application

Leave a Comment

I want my app to be in 'Open in' options for image.

I have used this code in my Info.plist

<key>CFBundleDocumentTypes</key> <array>     <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>PNG image</string>         <key>LSHandlerRank</key>         <string>Alternate</string>         <key>LSItemContentTypes</key>         <array>             <string>public.png</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> </array> 

In the application 'Inbox', on sharing an image, i can see my app 'Quotle' :

enter image description here

But in Apple's application 'Photo', i don't see my app :

enter image description here

What can i do to see my app in sharing menu into application 'Photo'?

1 Answers

Answers 1

In order to show your app in Photo's Share to list, you need to add a new target of Share Extension into your project, please refer the document for more info on how to add the Share Extension.

If You Enjoyed This, Take 5 Seconds To Share It

0 comments:

Post a Comment