Can someone explain and give example code to do the following steps in my iPad app:
- do some things in my app, which generates some data (as a string)
- write that data to a text file
- be able to plug in my iPad to my computer and grab those text files off
How can I do this?
For writing string in a file use this
Then set
Application supports iTunes file sharingkey toYESin your plist file.When you connect your device with iTunes from there you can save your
data.txtHere is the video how to get files from iTunes
Edited as requested.