I received a line of bluetooth data (from a Cycle Analyst computer) a few time a second. I put the data in an array and add some calculated one to it.
A typical usage of the app last a couple of hour but can be continu a few day in a row.
So I don't want to keep all this data in memory, I just need to log it to the file,
I would like to append those data to a file one line at the time
The file will be ascii string separated with tab.
The user will be able to export this file to use In other app.
I look UIDocument example from CS193P of Stanford and I am not sure it will work for me.
I could not find anything on the Append i need to do.
Do you have a direction I should look to for a solution.
Where in the doc can I find information on that ?