ios - registering file types supported by an application to open files from other apps -
i want app able copy files (images, videos, etc..) other applications throughout ios, after looking through apples documentation , online sources still haven't been able work. have attached image of info plist looks like. here plist code section: <key>cfbundledocumenttypes</key> <array> <dict> <key>cfbundletypename</key> <string>all files</string> <key>cfbundletyperole</key> <string>editor</string> <key>lshandlerrank</key> <string>owner</string> <key>lsitemcontenttypes</key> <array> <string>public.data</string> <string>public.content</string> </array> </dict> </array> registering file types if want ios open app when clicks email attachment file extens...