I am a newbi in iPhone development.I want to build an app which will have a UIViewController first , which will have a button.Now on clicking the button, it shud load a UINavigation controller. Here is how i m approaching :
i created a UIViewController class, where i took a
-(IBAction) PressMeFunc:(id) sender
for the button to be pressed.
Then i created a UIView xib file.I did the required steps in the IB.
Then in the AppDelegate, i added the ViewController's instance as a Subview of the window.
Upto this it is OK.
Next, how do i load a navigationcontroller on the press of the button?
I know how to build a navigationController project from window-based app, but i am having a tough time doing NavigationController as a subview of UIView.
Your help is much appreciated.
regards,
XcoderMi2