Navigation controller awkward placement issue
So what I'm trying to do is this:
I have an app that uses a tab bar layout. On one of it's view controllers, I need to display a view that updates real time changes to an image, occupying the upper part of the screen. On the bottom half of the screen I want to display a tableview that uses the navigation controller to push and pop views BUT ONLY ON THE BOTTOM HALF! The top image must stay put.
My problem is that I am too reliant on IB for creating iPhone GUI. I've tried using [self.view addSubview: image] and [self.view addSubview: navController.view], but I get errors when I click on the tab bar button for that view controller.
Any suggestions or ideas as to what I should do? Thanks.
Edit: Disregard question, I simply seen examples of GUI being created programmatically, and had to build the view in the viewDidLoad{..} method of the viewController corresponding to the tab.
Last edited by Micksabox; 03-23-2009 at 06:59 PM.
Reason: Found solution
|