I am new to Cocoa programming.
I have a main NSWindowController
and would like to open a second sub NSWindowController
. can't seem to find the code anyway.
Can anyone help?
not sure if this is correct but i got this working as this is new for me as well
in the AppDelegate file i have
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application
QuickBookingViewController * viewController = [[QuickBookingViewController alloc ] initWithNibName:@"QuickBookingViewController" bundle:nil];
SimpleWindow *myWindow = [[SimpleWindow alloc] initWithWindowNibName:@"SimpleWindow"];
[self.window addChildWindow:[myWindow window] ordered:NSWindowBelow];
}
that seems to open up my view controller
recently i got this code from SO
SimpleWindow *myWindow = [[SimpleWindow alloc] initWithWindowNibName:@"SimpleWindow"];
[myWindow showWindow:nil];
[[myWindow window] makeMainWindow];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With