How can I change a NSBox
to isHidden:YES|NO
programmatically?
Asked
Active
Viewed 807 times
0

Justin Boo
- 10,132
- 8
- 50
- 71

user1642542
- 11
- 3
1 Answers
1
Any subclass of NSView responds to the setHidden:
method, so to change it simply call
[box setHidden:YES];

cobbal
- 69,903
- 20
- 143
- 156
-
I get that, but how to call the box name from the interface. I tried many different ways. – user1642542 Sep 03 '12 at 00:44
-
Got it, thanks. There was another error with the outlet that I found. – user1642542 Sep 03 '12 at 00:54