I've developed a feature for an app that stores it's information in a CoreData object. This data persists when I shut down the app, but not when a user logs out and logs back in. I need the data to persist. Some notes:
1) Some of the other data for the app is uploaded to a server. This is not an option.
2) I cannot for the life of me find how any of the app's other local data is persisted when a user logs out.
3) My boss suggested NSUserDefaults - what would be the best way to save a CoreData object in there?
Thanks in advance for your answers!