user1642542
user1642542

Reputation: 11

Changing Visibility of NSbox Objective C

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

Upvotes: 0

Views: 815

Answers (1)

cobbal
cobbal

Reputation: 70765

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

[box setHidden:YES];

Upvotes: 1

Related Questions