I have been doing a lot of work on UIViewControlers and Nibs and notice there are two ways of doing it.
@class AController : UIViewController
[[AController alloc] initWithNibName:<name of nib> bundle:nil];
and the other way is that you make the File Owner the the UIViewController and link the View. All you have then do is
[[AController alloc] init];
or have it done else where, like in other nib files (I think). For me, the latter is so much easier, so when explain how to load a nib file, why do they always use the first? And is there any difference, like performance-wise?