vote up 0 vote down star

How would you make a button display a window in the same Nib File when it is clicked? Sorry If This Is Vague.

flag

1 Answer

vote up 5 vote down check

Set the button's action to makeKeyAndOrderFront: with the other window as the target.

link|flag
How would i make the other window the target? – Joshua Jun 3 at 17:59
You drag a wire from the button's action onto the icon for the other window. Just like you would wire up anything else in IB. – Alex Jun 3 at 18:22
Do you set it's action to makeKeyAndOrderFront: from Files Owner? – Joshua Jun 3 at 18:30
1  
When you drag the connection from the button to the window, IB will show a little HUD-styled pop-up menu with a list of available action selectors in it. Click on makeKeyAndOrderFront:. – Peter Hosey Jun 3 at 18:32
2  
Control-drag from the button to the window, or to the icon for the window in the Nib document window. You might also want to read some of the Interface Builder tutorial information in the documentation... – Mark Bessey Jun 3 at 18:38
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.