I have a simple questionnaire app where I need to save the history of surveys displayed by the date when surveys has been taken. It has to work like this – in tableview user first can see date, after tapping the date he can see answers of the survey. I’ll use NSUserDefaults for history. Any suggestions?
Share
If you are going to use
NSUserDefaults, you could keep all your surveys inNSMutableDictionaryand your key would be justNSDatestrings.Then to get sorted array of surveys you can use the following code:
As a result you will get
sortedValuesarray.