I am just trying to make my Window as a modal window (that is parent window should not be accessed once this window is launched)
Is this code would do? Anything wrong in this
Is this code would do? Anything wrong in this
Code:
m_myWindowController = [[MyWindowController alloc] initWithWindowNibName:@"Settings"];
[m_myWindowController close];
[[m_myWindowController window] setParentWindow:self.window];
[NSApp runModalForWindow:[m_myWindowController window]];