Search code examples
ipaduibuilder

How do you launch a second MainWindow.xib in an iPad application?


How do you launch a second MainWindow.xib in an iPad application?


Solution

  • You load the nib, most likely using NSBundle, and then call makeKeyAndVisible on the window in the nib. The best way to get the window is to use an outlet in the object loading the nib.

    [[NSBundle mainBundle] loadNibNamed:@"SecondWindow" owner:self options:nil];
    [self.secondWindow makeKeyAndVisible]; //assuming the window was connected to a property named secondWindow