Re: awakeFromNib and sheets
Re: awakeFromNib and sheets
- Subject: Re: awakeFromNib and sheets
- From: Finlay Dobbie <email@hidden>
- Date: Sat, 25 Aug 2001 10:55:22 +0100
On Saturday, August 25, 2001, at 03:25 am, Gary C Martin wrote:
Thanks Mark, this sounded like just the thing and having tried it it
does work well operationally but for one small cosmetic hic-up. The
windows contents is updated just after the window is rendered on
screen, so the users see the nib template being filled in. I'm a little
anal about hiding such things form the users gaze :o) Would work very
well if you have a window that does not visually get updated
programatically.
Yes, exactly. You use -applicationDidFinishLaunching to do anything
*AFTER* the UI has been displayed, and -awakeFromNib to do anything
*BEFORE* the UI has been displayed (but after the objects have been
unarchived from the nib and you can therefore modify them).
-- Finlay