views:

71

answers:

2

I have 2 views. When I'm on the 1st view, I have a textfield. I enter some text in the textfield. I exit the app, launch some another application and then return to my application. I want to maintain state of the textfield and that view. Likewise, if I quit with the 2nd view active, when I return to the app I need to return the view to the state it was in when the app quit.

How do I save the information about the state of my app when it last quit so I can recreate it upon the next launch?

+1  A: 

Use the NSUserDefaults to write the value and selected view index to the user's preferences.

St3fan
+1  A: 

Apple's DrillDownSave sample may be helpful

Vladimir