Example project: http://cl.ly/1g1L3E2Z0r1c
I create a nib file and then create some views in it, which I then load into another view controller. In the view that I bring in, it's a subclass of UIView where I have outlets set up for its properties. I have one specifically for its constraint from distance from the top.
But when I try to access it in code (like as follows), I can't, it states it's null:
self.tutorialScreen3.textLabelDistanceFromTop.constant += 150.0;
NSLog(@"%@", self.tutorialScreen3.textLabelDistanceFromTop);
What am I doing wrong?