As the title suggests, I'm trying to embed a navigation view into one of my tabs for tab view, and I'll have a table view inside this.
I've managed to get my navigation view to open from the tab, but I've done this by clicking on the tabBarController in MainWindow.XIB, going to the attributes inspector and changing the class of that specific view controller from "view controller" to "navigation controller". However I now don't know how to access my navigation controller. Once I've changed the class to navigation controller, if I go to the identity inspector and try to type in the class for my custom view controller, it won't accept it.
Alternatively, I tried simply loading a view controller nib with a navigation controller, but it always loads the UIView rather than UINavigationController.. Maybe my connections here are set up wrong, but I can't figure out how to set them up properly...
I know how to set up connects when I'm connecting my AppDelegate to my navController, but since this isn't my main window and it's just a custom nib, I don't know how to connect them up without the appDelegate... Maybe I should post this as a seperate question..
Can anyone please tell me what I'm doing wrong? Any help would be greatly apreciated!
I've managed to get my navigation view to open from the tab, but I've done this by clicking on the tabBarController in MainWindow.XIB, going to the attributes inspector and changing the class of that specific view controller from "view controller" to "navigation controller". However I now don't know how to access my navigation controller. Once I've changed the class to navigation controller, if I go to the identity inspector and try to type in the class for my custom view controller, it won't accept it.
Alternatively, I tried simply loading a view controller nib with a navigation controller, but it always loads the UIView rather than UINavigationController.. Maybe my connections here are set up wrong, but I can't figure out how to set them up properly...
I know how to set up connects when I'm connecting my AppDelegate to my navController, but since this isn't my main window and it's just a custom nib, I don't know how to connect them up without the appDelegate... Maybe I should post this as a seperate question..
Can anyone please tell me what I'm doing wrong? Any help would be greatly apreciated!