Recently, I was working on showing my app in "Open in..." menu when opening custom mail attachment (let's say filename-extension is xyz, and I've declared custom mime-type application/xyz). I followed guide on this site:
https://developer.apple.com/library/ios/qa/qa1587/_index.html
and my app is now displayed between all other apps, when I tap on corresponding attachment. The problem is in description under my app. Instead of just showing its name (MyApp) it's shown as Copy to MyApp.
Is there any way to make my app description not contain Copy to
words?



Make sure you set the
LSHandlerRankin your.plisttoOwnerOwnersignalizes that yours is the native app that creates and opens files of this type.Update Try setting the
CFBundleTypeRoletoViewerI could imagine that you are not allowed to edit the actual files that are attached to an E-Mail anyway.