Created a simple navigation controller based application. Application delegate class has Outlets for window and navcontroller.
MainWindow.xib has a Window and a navigation controller. Files owner is UIApplication and I have an Application Delegate (class is of course my App Delegate) with an outlet to the window and the nav controller, plus a delegate connected to the Files Owner.
In applicationDidFinishLaunching I am trying to set the window's rootViewController to the navigationController but the Outlet for the navigationController is nil and (of course) the application comes up with a blank window...and the error "Application windows are expected to have a root view controller at the end of application launch".
What am I missing here?