Hi all,
i have and main NSWindow here on button click i open another NSWindow
like this.
i want to set some text and label of child window before opening this,to display new text and label when its launched.
where i can do something when child window is launching.
thanks.
i have and main NSWindow here on button click i open another NSWindow
like this.
Code:
[NSApp beginSheet: Child_Window modalForWindow: Main_Window modalDelegate: nil didEndSelector: NULL contextInfo: nil];
int result = [NSApp runModalForWindow:Child_Window];
[Child_Window orderOut:nil];
[NSApp endSheet: Child_Window];
i want to set some text and label of child window before opening this,to display new text and label when its launched.
where i can do something when child window is launching.
thanks.