#import "FullScreenWindow.h"
#import "ControllerFromDocumentOne" //this allows things to be read, but not until you have my sample in.
- (void)awakeFromNib {
FirstDocument *firstNib = [[FirstDocument alloc] initWithNibName:@"MainMenu" bundle:[NSBundle mainBundle]];
SecondDocument *secondNib = [[SecondDocument alloc] initWithNibName:@"MyDocument" bundle:[NSBundle mainBundle]];
//In here, the code reads MyDocument.nib from your compiled App's bundle. Then, somewhere else along in your code you can reference to it or even copy it into the new window/control it from the source files you are working on.
}
- (IBAction)goFullScreen:(id)sender {
//do something here
}