My program has a tableView with a list of entries that and you can add each item in the table View to the “favorites.” I have been storing the information in a plist however i’m not sure if it is possible to store multiple objects at different times or will it continue to over write the plist with the new entry? Also is it possible to delete the entries out of the plist?
Share
I am having a bit of trouble understanding your question.
How are you storing your data?
A. If your data is in an NSArray\NSMutableArray You can call
writeToFile:on your array to save the current state of your array, then after you modify your array ether inserting or deleting items you can callwriteToFile:to update your plist. NSMutableArray will allow you to do all those modifications.B. if you want more low level control you can parce the XML plist. But this will be a lot more work…