vote up 6 vote down star
5

I am writing an iPhone application, and need to save the state of my application (5K or so).

My main worry is data persisting across upgrades. Some of the applications I use clearly got this wrong, and I would prefer not to!

flag

4 Answers

vote up 6 vote down check

To save state, NSUserDefaults is the way to go. I believe most, if not all, instances of application data being deleted after an upgrade are due to issues on the AppStore. They may be related to data-format changes, but if you use just NSUserDefaults and standard plist-storable objects (NSString, NSDictionary, NSNumber, NSArray, NSNumber, and primitives), you should be safe.

link|flag
vote up 0 vote down

The most common way to save state (data, application information etc) is to use Sqlite3. I'm not sure how an update would wipe it, but it's possible that the update process could overwrite the datafile.

The other option would be to use UserPrefs (NSUserDefaults). Again, I'm not sure the max size for that, or even if it would be suitable for the data you need to persist.

link|flag
I think you mean NSUserDefaults – Chris Lundie Nov 21 '08 at 1:00
Yes I do. Whoops. Will Edit – KiwiBastard Nov 21 '08 at 1:23
vote up 1 vote down

I use sqlite to store all application data, and preferences. To make sure that updates do not wipe the data, make sure the sqlite file is stored in the Documents directory of the application, which is not overwritten by upgrades. Some of the example code ("SQLite Books" I think) Apple provides has code to handle this.

link|flag
vote up 2 vote down

It really depends on what you're doing and your needs.

If it's a small amount of data NSUserDefaults is a great way to go. You can also save a dictionary or an array to your apps Documents folder, then load that file back in on launch.

SQLite is nice, but unless you've got a lot of data that you'll be querying, it's a little over the top for just saving state.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.