ipad - How do I get my application to show up in the "Open in..." menu on iOS for ANY document type? -


In the iPad there is a need to keep my app name in the "Open" menu for any document type in the iOS platform. That my application for any extension should be presented in the "Open in" menu. One way is to add all the keys to the document type UTI, but I want some options as I can mention "*" to allow all document types.

It is available with CFBundleTypeExtension , but it is for OS X platform, not for iOS platform. I also need the same thing for custom extensions, so I do not need to update the .plist file repeatedly for new code types.

Tell me if such a thing is possible or not. For more information or any inquiries I ask and if necessary I will try to give more explanation.

see

in short: UTI public.item Add to the list of document types handled for your app.

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

c# - passing input text from view to contoller with FacebookContext using Facebook app -

Calling a C++ function from C# by passing a string with variable size to it -