tags:

views:

191

answers:

1

In my application I have some controls like NSButton and NSTextfield I want to turn invisible. I know I can do it n the Interface Builder but I need to do it in the code.

I still haven't found the right message I need to send to the controls.

+10  A: 
[myView setHidden:YES];
htw