I have a UIViewController with some controllers and some views. Two of these views (Grid Cell) are other nibs. I\'ve got outlets from the Grid Cells to File\'s
UIViewController
loadNibNamed:: will call initWithCoder:
Why don't you follow this pattern?
-(id)initWithCoder:(NSCoder *)coder { if (self = [super initWithcoder:coder]) { // do stuff here ... } return self; }
Does [super initWithcoder:coder] do things that you want to avoid?
[super initWithcoder:coder]