melcon
melcon

Reputation: 1

Saving app state on iphone

I'm developing a word game for iphone. Now that IOS has multitasking, do I definitely have to save the game state when the game is interrupted?

Upvotes: 0

Views: 354

Answers (2)

endy
endy

Reputation: 3872

You may want to look into three20's persistance

http://three20.info/showcase/persistence

Upvotes: 0

TomSwift
TomSwift

Reputation: 39512

Your app can be unloaded by iOS whenever it decides to do so. Low memory, the user forces the app to close, etc.

Yes, you should save your game state if you want to be able to reinstate it when the app launches from scratch.

Upvotes: 2

Related Questions