Quick question, my data model is a singleton object and it contains a list of names that I want to archive. My idea is to make the model responsible for loading and saving it's own data. The model's load
method will be called by the ViewController
's viewDidLoad
method and save
by the ViewController
's applicationWillTerminate
. I could do the load/save directly within the ViewController, but this would be messy as the list of names are an instance variable of the model.
gary