Hi I would like to register to support image files in my app; so when user tap on the action button in iPhone's photo app, my app icon would show up within the "open with ..." menu. I have the following in my info.plist
<dict>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
<array>
<string>public.png</string>
</array>
</dict>
<dict>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
<array>
<string>public.jpeg</string>
</array>
</dict>
but can't get it to show up in that menu. is this the correct way? please help thank you!!