I'm trying to create a navigation view in the Interface Builder. It's not in the MainWindow.xib, so the relevant sample project on the Apple Dev. site is useless.
The most logical (and cleanest) way to approach this seems to create a Xib-file where the File's Owner is a subclass of UINavigationController - however, I cannot get this to work at all in IB, (because UINavigationController acts as a folder, and File's Owner doesn't, even when I change the class).
Alternatively, I've got a Xib-file where the File's owner is a subclass of a normal ViewController (VCA). I've added a NavigationController with a ViewController that's another subclass of UIViewController (VCB), and I've specified a Xib view for this ViewController. But I have no idea how to specify the view of VCA in IB, and my attempts to do this programmatically haven't worked.
Please help!