I have a table view where the user can select multiple rows. I would like to save the user’s selections. Is NSUserDefaults the best way to handle this? There are only a few selections the user can make. One of them is where they can select and save several categories that they would like to have appear in their search results in another table view.
thanks for any help
try this
In this case any row of your table that has selected will remove from the list and will store in
yourSelectedArray. you can do what ever you want with that later. if you want to save it in file or so you can useNSDictionarybesideNSMutableArray.