I'm loading a nib as:
ContentViewController *theController = [[ContentViewController alloc] initWithNibName:@"ContentView" bundle:nil];
which has a label on it. The view controller has an IBOutlet of UILabel with a @property of retain and synthesized variable. When I load the nib as above from another class and reference the label's text property as:
theController.myLabel.text = @"testing...";
myLabel has the address of 0x0. Before assignment, text is "invalid". After assignment, it's type is ContentViewController. There's some issue with memory management. Any ideas?