Re: regarding nib files.
Re: regarding nib files.
- Subject: Re: regarding nib files.
- From: Vince DeMarco <email@hidden>
- Date: Fri, 31 Aug 2001 08:12:56 -0700
On Friday, August 31, 2001, at 02:17 am, Annie Felix wrote:
Hi
1.Can there be more than one window in a nibfile.
If so how do we invoke each one of them seperately.
Yes but we recommend that you don't do this. When a nib file is loaded all
of the
objects are instantiated and connected immediately. Its much better design
to have a separate nib file for each individual window.
2.Can there be an outlet connection between two
different nib files?If so how can the connection be
established?
No you are going to have to do that via code.
Basically the files owners of both of the nib files need to Talk to each
other and set up the connections.
You really don't want to do this, try to make each nib file completely
self contained. This is more of programming style then anything else.
vince