Hi , I am developing an application in cocoa. Now I am facing a critical issue. I can't hide controls NSButton in NSView. I used the following code
[btn setHidden:YES]
but this "btn" control is not becoming hidden. I used the following code to check whether the button is hidden
[btn isHidden]
but this return YES. Also I can't sent a value to NSTextfield while showing this view.
Thanks in advance.