I have a program for iPhone with a table view. The table view displays its data from an NSMutable Array. I want people to be able to add data to this table, that is, add objects to this array. Using addObject and reloadData , I can add objects to the array and reload the table view so that the newly added data is also displayed. However, as soon as I started the application again, there was no new data. My question is the best way to save an array on iPhone so that when I restart it, I can populate the table with user-added data?
thanks
source share