I created some files which store some logging information in my iPhone App. They are stored in the App’s document folder. I would like to download them onto my Mac. I’m able to see them in the xCode organizer but I’m not able to access these files. How can I achieve this?
Share
First, set

Application supports iTunes file sharingon on your project’s settings plist. It could also be namedUIFileSharingEnabled.Then, for the code, save the file in
NSDocumentDirectorylike so:All taken from iOS Dev Tips – File Sharing from App to iTunes is too easy