Reputation: 11
How can I change a NSBox to isHidden:YES|NO programmatically?
NSBox
isHidden:YES|NO
Upvotes: 0
Views: 815
Reputation: 70765
Any subclass of NSView responds to the setHidden: method, so to change it simply call
setHidden:
[box setHidden:YES];
Upvotes: 1