I configured my app with a custom file type. I added the information required in the Info.plist file (Document Types and Exported UTIs). Now iOS recognizes my file type and associates it with the app. So, for example, when I open Mail, and I see my file as an attachment, I can click on it and select to open with my app.
How I can get the URL of the file from my app? I tried to use OpenUrl
on UIApplication
, but it does not work.
Anyone know how to do that?