I've been wondering what i should use these classes for. I would think it's to set up the appropriate main view on the device. By default there's only a dealloc method added to these classes, so I figure I setup my iPhone view in the *AppDelegate_iPhone class in the -init method, yet whatever I do, I'm not able to change the background color or add a subview on the main window using this class. Perhaps I should use this class for other purposes and just use the normal AppDelegate to setup my view hierarchy for each device?

link|improve this question

Did you mean iPad, not iPod? – BoltClock May 12 '11 at 11:07
Yep, fixed it now. – Wolfgang Schreurs May 12 '11 at 11:19
feedback

1 Answer

up vote 3 down vote accepted

You would do stuff common to iPhone and iPad in AppDelegate and the differences in *AppDelegate_iPhone/iPad and inherit AppDelegate. If there are no differences just delete them and change the class of the delegate in both iPhone/iPad main windows to the one and only one AppDelegate.

And init will be the wrong place, IBOutlets will be nil at this place. Put your code inside applicationDidFinishLaunching.

link|improve this answer
Yes, usually would do this in appDidFinishLaunching (in case of the usual delegate), but I guess the subclasses are kind of pointless for my purposes. I'll delete them :) – Wolfgang Schreurs May 12 '11 at 12:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.