I have an iPhone program with a table view. The table view gets its data from a NSMutable Array. I want people to be able to add data to that table, i.e add objects to that array. Using addObject
and reloadData
, I am able to add objects to the array, and reload the table view so that the newly added data is also displayed. However, once I re-launch the app, the newly added data is missing. My question is what is the best way to store the array in the iPhone so that at re launch i can populate the table with the user added data?
Thanks