iphone: Accessing Code for Elements Created in Interface Builder
- by user362685
I am attempting to create a basic tab-bar application using interface builder. I create a new project in Xcode selecting tab bar application.
My question is how can I access the code that instantiates and pushes each of the views when the tab bar buttons are pressed? I would imagine that would be done by the tab bar controller, however when I write the class file from interface builder (filewrite class files), it just creates a blank generic TabBarController.h/TabBarController.m without the methods for pushing each of the views associated with the tab bar elements.
I ask this because I would like to pass each view controller a reference to the data model when they are instantiated. Any help would be greatly appreciated, thanks.