I am doing game for iphone.In that I want to store game data such as level,score,stars count and etc.Shall I use "KeychainItemWrapper" class instead of NSUserDefaults to store those datas."KeychainItemWrapper" class is only used to store username and password only?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I don't see the point in using the keychain for that, it's meant to store passwords/users. What's the problem in user NSUserDefaults? Your info is going to be perfectly safe there. Or you can even use CoreData if you want something more "complex". In case you want the data to be stored after the users delete the app, then you need to use the keychain to store pairs of key/value. Check this link. |
|||||
|

