I want to handle files in my iOS App. My app should create a file with a custom suffix (e.g. file.mysuff) and save it to the device so I'll be able to copy it using iTunes File Sharing. Then I want to be able to attach that file to a new mail. When the receiver opens the document, mail should launch my app and handle that file.
Are there good tutorials on that topic? I'm still quite new to cocoa / cocoa touch so it should be easy to my. Is maybe a wrapper out there that I could implement so I just have to code something like
[self [saveMyFile path:[NSURL] contents:[NSString]]]
??
Thanks for help! Greets, J.