#import "ControllerSpawner.h" @implementation ControllerSpawner - (IBAction)newController:(id)sender { NSLog(@"newController called"); // I wonder if this is kosher. It does seem to work. [[[NSNib alloc] initWithNibNamed:@"MainMenu.nib" bundle:nil] instantiateNibWithOwner:nil topLevelObjects:nil]; } @end