So I've got a MyNibController class and an nib file which I've tried calling both MyNib.xib and MyNibController.xib with no luck. I think I've got them hooked up properly on the IB end (I was following a tutorial for xcode 5 though) with my nib's owner designated to be of class MyNibController.
The problem is that the view is apparently not loaded even after I run my applicationDidFinishLaunching method in my AppDelegate class which includes:
[window addSubview:myNibController.view];
The simulator shows a blanks white screen, and the documentation says if a subclass of UIController can't find a nib with the right name it just makes up a blank view, so that's why I'm thinking it can't find it. But then wouldn't that mean:
[myNibController isViewLoaded]
should return true after the first code runs?
Thanks for any assistance!