I have two buttons in single-view app main storyboard and would like to disable one of them as well as get value from the UILabel using awakeFromNib method. As far as I concern all relationships and GUI items must be initialized and values must be assigned before calling the awake method. Unfortunately I am not able to do get the value and disable button by applying
-(void) awakeFromNib {
decreaseButton.enabled = NO;
decreaseButton.alpha = 0.2;
[polygon initWithNumberOfSides: numberOfSidesLabel.text.integerValue minimumNumberOfSides:3
maximumNumberOfSides:12];
}
to the class I have made. I have established the connection between the UILabel and
IBOutlet UILabel *numberOfSidesLabel;
in my created class file. Can somebody see the mistake or shall I provide more info on the problem?

decreaseButtonandnumberOfSidesLabelnil when-awakeFromNibis called? – Seamus Campbell Feb 28 at 21:15nil. Roughly speaking, all such method calls return 0 or nil. So it's important here to know ifnumberOfSidesLabelis itself nil, or if it is actually an instantiatedUILabelobject with label text that evaluates to 0. Add something like:NSLog(@"%@", numberOfSidesLabel);or use the debugger to check. – Seamus Campbell Mar 1 at 0:55