I used NSUserDefaults to save NSMutableDictionary. But when I am retrieving the value from the NSUserDefaults, I am unbale to modify/update the values of the NSMutableDictionary into which I am saving the values.
Need some suggestion on how to do so?
You always get non-mutable instances of
NSDictionaryfromNSUserDefaults. To make them mutable, you need to do something like this: