Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On iOS devices, the Mail app offers "Open In..." option for attachments. The apps listed have registered their CFBundleDocumentTypes with the OS. What I am wondering is how my app might allow users to open files generated by my app in other apps. Is Mail the only app that provides this feature?

share|improve this question
1  
I'm pretty sure the answer is here: stackoverflow.com/questions/2774343/…. – Yar Dec 13 '11 at 16:55

2 Answers

up vote 19 down vote accepted

Take a look at the Document Interaction Programming Topics for iOS: Registering the File Types Your App Supports.

As long as you provide your document types in your Info.plist, other apps that recognize that document type will list your app in their "open in" choices. Of course, that presumes that your app creates documents that other apps can open.

share|improve this answer
Thanks! That looks like exactly what I was searching for. And, yes, my app creates .csv and .zip files. – westsider Oct 20 '10 at 21:01
you might want to edit your answer to reference new link (Apple has reorganized iOS Reference Library, apparently). – westsider Mar 9 '11 at 16:29
I added the document type in my app. for eg i have added type PDF . But when i running the document interaction it just taking the quick look application. – Vipin Vijay Aug 16 '12 at 10:47

The updated article that provides the relevant information can now be found under Document Interaction Programming Topics.

share|improve this answer
thanks for updated link. – westsider Mar 9 '11 at 16:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.