Changing Visibility of NSbox Objective C

819 Views Asked by At

How can I change a NSBox to isHidden:YES|NO programmatically?

1

There are 1 best solutions below

2
On BEST ANSWER

Any subclass of NSView responds to the setHidden: method, so to change it simply call

[box setHidden:YES];