Re: Initializing a view controller...

2011-01-10 Thread Phil Hystad
Fritz... Thanks for the pointers to the documentation. I was going to get to reading it if I struck out here. I am really not lazy, just old. phil On Jan 10, 2011, at 8:42 AM, Fritz Anderson wrote: > On 10 Jan 2011, at 9:17 AM, Phil Hystad wrote: > >> Is there a proper way to initialize a v

Re: Initializing a view controller...

2011-01-10 Thread Phil Hystad
Andreas: Thanks for the information. Now, I should kick myself for picking the name initialize but then maybe I should complain about Apple picking all the best names for methods. I think I have used the -viewDidLoad method before. phil On Jan 10, 2011, at 9:58 AM, Andreas Grosam wrote: >

Re: Initializing a view controller...

2011-01-10 Thread Andreas Grosam
On Jan 10, 2011, at 4:17 PM, Phil Hystad wrote: > Is there a proper way to initialize a view controller. So far, I have been > doing this in the application delegate by calling calling an initialize > method ( i.e. [viewController initialize]) in > application:didFinishLaunchingWithOptions: m

Re: Initializing a view controller...

2011-01-10 Thread Fritz Anderson
On 10 Jan 2011, at 9:17 AM, Phil Hystad wrote: > Is there a proper way to initialize a view controller. So far, I have been > doing this in the application delegate by calling calling an initialize > method ( i.e. [viewController initialize]) in > application:didFinishLaunchingWithOptions: met

Initializing a view controller...

2011-01-10 Thread Phil Hystad
Is there a proper way to initialize a view controller. So far, I have been doing this in the application delegate by calling calling an initialize method ( i.e. [viewController initialize]) in application:didFinishLaunchingWithOptions: method (prior to the view being added to the window and th