What is the best way to persist a small amount of user data in iOS 7? Is it a hack to use NSUserDefaults
? Is CoreData
too heavy?
I am attempting to store a list of airports that a user finds useful. The airports are identified by NSStrings
and have a small amount of data associated with them.
I am not opposed to creating a Core Data app, I'm wondering what the best approach to persisting a small amount of data.