You can use NSUserDefaults
:
[[NSUserDefaults standardUserDefaults] setObject:_sundayTextField.text ForKey:@"Sunday"];
[[NSUserDefaults standardUserDefaults] synchronize]; // Writes modifications to disk thus making your data persistent between launches
And when your text fields are created :
_sundayTextField = (NSString*)[NSUserDefaults standardUserDefaults] objectForKey:@"Sunday"];
Do this for the other days as well and make sure the object stored in the user defaults dictionary is not null
(if so just leave the text field empty or use an initial value).
NSUserDefaults
is easy to use and is persistent between launches.
For more complex data CoreData is preferred.