// from within controllerA
[controllerB do:something];
I've read this link but I didn't really understand how they were going
about it.
� � � �http://www.cocoadev.com/index.pl?MakingNibsTalkToEachOther
Can anyone help out here? Or am I even going about this correctly?
Nibs are files. Files don't communicate, objects do. Nibs contain
objects, but they are not working objects until they are woken up, at
which point the contained objects only know about those objects which
they have been connected to (as outlets or action targets), and
possibly the nib file's owner.
In InterfaceBuilder, set the FilesOwner property for the NibFile. Set
it to the class that owns the document window and you'll have
everything necessary to connect outlets and actions. The "instance"
you connect to is the FilesOwner icon in the Instances tab in
InterfaceBuilder.
ref. http://www.cocoadev.com/index.pl?FilesOwner