Quote:
Originally Posted by eddietr
So applicationDidFinishLaunching in your app delegate is a good place to set up any controllers that you want to use. And then have those controllers set up whatever model objects are needed.
And then if you keep references to the controllers in the app delegate, then it's very easy to get those references from any view controller, since a pointer to the app delegate is always easily available.
|
Thank you for the advice.
Question: Why then wouldn't you simply have an instance of your model in the app delegate and have each controller access it via the delegate pointer?
Chris.