Hi all,
I am trying to load a navigation controller after a home page, so on the home page I have an action that is triggered when a icon is clicked:
- (IBAction)showContact:(id)sender {
ContactViewController *Contactcontroller = [[[ContactViewController alloc] initWithNibName:@"ContactView" bundle:nil] autorelease];
Contactcontroller.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:Contactcontroller animated:YES];
}
This then loads the navigation controller view, but in interface builder I can't set the view as navigation controller, so have added a view along side the nav controller, but how would I load this into the view?
Sorry if newbie question...