while going through the class reference file for NSUserDefaults, I notice that the return value for [NSUserDefaults standardUserDefaults]is
The shared defaults object
what is this object, what is its type? which methods we can call on this object?
Thanks,
It’s an instance of
NSUserDefaults. You can call any of the instance methods that are defined for that class. (e.g.stringForKey:,dictionaryForKey:….)