I want to hide/unhide controls of a subview in a view. For example: When a button action occurs, some labels will become hidden then unhide on a subsequent button action and so on. I have implemented this functionality through Interface Builder. How can I do the same implementation programmatically?
I've tried
[label1 hidden: true];
which hasn't worked for me.
Here is the answer:
[label1 setHidden:YES];
YES
is Objective-C's version of true
.
To hide a label:
self.yourlabelname.hidden = YES;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With